Signing for "DKPhotoGallery-DKPhotoGallery" requires a development team. Select a development team in the Signing & Capabilities editor.
Asked
Active
Viewed 3,303 times
8
-
Does this answer your question? [Xcode error: Code signing is required for product type 'Application' in SDK 'iOS 10.0'](https://stackoverflow.com/questions/39524148/xcode-error-code-signing-is-required-for-product-type-application-in-sdk-ios) – jraufeisen Sep 15 '22 at 12:05
-
This worked for me https://github.com/CocoaPods/CocoaPods/issues/11402#issuecomment-1149585364 – Mustafa Bhatkar Sep 15 '22 at 16:35
-
@MustafaBhatkar you are right! It worked for me, too. – jux_97 Nov 14 '22 at 16:57
-
The link shared by @MustafaBhatkar worked for me also. – Subhangi Pawar Nov 17 '22 at 07:40
1 Answers
11
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
Oluwatosin Solarin
- 269
- 4
- 9