open-im-flutter-demo
open-im-flutter-demo copied to clipboard
iOS development team 已经设置,但还是报错
Could not build the precompiled application for the device.
Error (Xcode): Signing for "TOCropViewController-TOCropViewControllerBundle" requires a development team. Select a development team
in the Signing & Capabilities editor.
Error (Xcode): Signing for "DKImagePickerController-DKImagePickerController" requires a development team. Select a development team
in the Signing & Capabilities editor.
Error (Xcode): Signing for "DKPhotoGallery-DKPhotoGallery" requires a development team. Select a development team in the Signing &
Capabilities editor.
已经设置了还是报错
I have this too.
same, any fix for that?
Any fix for this?
I'm having the same issue after updating my Xcode to 14.
I suggest you give it up
You weren't able to find a solution? @thiagocarvalhodev have you found anything?
I was able to solve the problem by doing the following:
- build the ios app through xcode
- when you get the error, click on it. It will take you to org.cocoapods.TOCropViewControllerBundle pod page.
- select a team on that page
And you should be good to go!
I have this too.
Thanks, @Huge-Puppy ! That worked!
post_install do |installer|
installer.pods_project.targets.each do |target|
target.build_configurations.each do |config|
config.build_settings['EXPANDED_CODE_SIGN_IDENTITY'] = ""
config.build_settings['CODE_SIGNING_REQUIRED'] = "NO"
config.build_settings['CODE_SIGNING_ALLOWED'] = "NO"
end
end
end
@std-s , this worked as well and the XCode doesn't ask to sign others packages too. Thanks!