Skip to content
New issue

Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.

By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.

Already on GitHub? Sign in to your account

ios error Signing for "DKImagePickerController-DKImagePickerController" requires a development team. #701

Open
timfong888 opened this issue Jul 7, 2022 · 14 comments

Comments

@timfong888
Copy link

Signing for "DKImagePickerController-DKImagePickerController" requires a development team. Select a development team in the Signing & Capabilities editor. (in target 'DKImagePickerController-DKImagePickerController' from project 'Pods')

However, in my project files, I have already indicated that I am signing the two targets, my project's target and Image Notification.

So I'm not clear why this needs a separate signing of the development team. The target doesn't show up in Xcode, so where in the code do I specify the team?

@SimonVillage
Copy link

same problem here

@armandojimenez
Copy link

How do we solve this?

@armandojimenez
Copy link

Any fix for this?

@armandojimenez
Copy link

armandojimenez commented Aug 29, 2022

Any fix for this? This is the only thing preventing me from testing my app on iOS 16

@sarinupreti2021
Copy link

+1

@sarinupreti2021
Copy link

sarinupreti2021 commented Sep 13, 2022

Adding this code worked for me.

def removeFlutterFilePickerUnwantedPod
  if !Pod.const_defined?(:PICKER_MEDIA) || PICKER_MEDIA
    Pod.const_set(:PICKER_MEDIA, false)
  end
  if !Pod.const_defined?(:PICKER_AUDIO) || PICKER_AUDIO
    Pod.const_set(:PICKER_AUDIO, false)
  end
end


removeFlutterFilePickerUnwantedPod()

@Cheng455153666
Copy link

gem 'cocoapods-pod-sign'

It's work!

@ThickLine
Copy link

ThickLine commented Sep 14, 2022

plugin 'cocoapods-pod-sign'
skip_pod_bundle_sign

Helped me!

@zhangao0086
Copy link
Owner

See this Swift Forum thread for more info, in our case passing CODE_SIGN_STYLE=Manual alongside with DEVELOPMENT_TEAM and CODE_SIGN_IDENTITY worked.
https://forums.swift.org/t/xcode-14-beta-code-signing-issues-when-spm-targets-include-resources/59685

@miguelpruivo
Copy link

@zhangao0086 will you update the plugin in order to fix this?

@daiki1003
Copy link

+1

@ykiran
Copy link

ykiran commented Sep 25, 2022

@ThickLine @Cheng455153666
Where do you specify these lines? Please help.
Thanks in advance.

@ThickLine
Copy link

ThickLine commented Sep 25, 2022

@ykiran
In your Podfile.
Or better add config.build_settings['CODE_SIGN_IDENTITY'] = ''

like this:

post_install do |installer|
        installer.pods_project.targets.each do |target|
            target.build_configurations.each do |config|
                config.build_settings['CODE_SIGN_IDENTITY'] = ''
            end
        end
    end

@ykiran
Copy link

ykiran commented Sep 26, 2022

Thanks @ThickLine for taking the time to explain this.
However, I went with this fix and it worked. #705 (comment)

Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment
Labels
None yet
Projects
None yet
Development

No branches or pull requests

10 participants