open-im-flutter-demo icon indicating copy to clipboard operation
open-im-flutter-demo copied to clipboard

iOS development team 已经设置,但还是报错

Open lucasjinreal opened this issue 3 years ago • 3 comments

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.
image

已经设置了还是报错

lucasjinreal avatar Mar 13 '22 05:03 lucasjinreal

I have this too.

timfong888 avatar Jul 02 '22 05:07 timfong888

same, any fix for that?

SimonVillage avatar Jul 15 '22 10:07 SimonVillage

Any fix for this?

armandojimenez avatar Jul 27 '22 19:07 armandojimenez

I'm having the same issue after updating my Xcode to 14.

thiagocarvalhodev avatar Sep 13 '22 15:09 thiagocarvalhodev

I suggest you give it up

lucasjinreal avatar Sep 13 '22 15:09 lucasjinreal

You weren't able to find a solution? @thiagocarvalhodev have you found anything?

i-jared avatar Sep 14 '22 04:09 i-jared

I was able to solve the problem by doing the following:

  1. build the ios app through xcode
  2. when you get the error, click on it. It will take you to org.cocoapods.TOCropViewControllerBundle pod page.
  3. select a team on that page

And you should be good to go!

i-jared avatar Sep 14 '22 04:09 i-jared

I have this too.

mfurkanyuceal avatar Sep 14 '22 16:09 mfurkanyuceal

Thanks, @Huge-Puppy ! That worked!

thiagocarvalhodev avatar Sep 14 '22 19:09 thiagocarvalhodev

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 avatar Oct 08 '22 03:10 std-s

@std-s , this worked as well and the XCode doesn't ask to sign others packages too. Thanks!

thiagocarvalhodev avatar Oct 10 '22 10:10 thiagocarvalhodev