Skip to content

[Capacitorjs | Azure Devops Pipeline] Ignore Pods at Signing

Georg Höller
Georg Höller
2 min read
[Capacitorjs | Azure Devops Pipeline] Ignore Pods at Signing
Photo by Harrison Broadbent / Unsplash

Today I stumbled over a problem in my capacitorjs azure devops build pipeline. I switched to manual signing for some internal reasons but then I was faced with the error "X does not support provisioning profiles".

I invested some time to find a solution for the problem and found a stackoverflow entry which did the trick.

How to fix ′ *pod* does not support provisioning profiles’ in azure devops build agent
I currently have problem with my pipeline in Azure Devops. Since March 27th, I got the error: error: Alamofire does not support provisioning profiles. Alamofire does not support provisioning pr...
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
https://stackoverflow.com/a/55750843/7567724

You have to paste the code from above in your pods file from your ios app. You should find the file at 'ios/App/podfile'.

The Podfile should look like something like this:

If you have further questions about this topic or need help with a problem in general, please write a comment or simply contact me at yesreply@georghoeller.dev :)
Capacitor

Comments


Related Posts

Members Public

[Capacitorjs | Angular] Back Swipe Support for iOS and Android

Recently I recognized that capacitorjs apps does not have a native back swipe support. Little bit weird I thought but the solution is quite simple! iOS - Native To enable the iOS back swipe we need to write a capacitor plugin. I tried it without a plugin but inside the

[Capacitorjs | Angular] Back Swipe Support for iOS and Android
Members Public

[Angular | Capacitor] Interact With Your Native Calendar

Recently I had do to implement a simple task: When the user presses the 'save appointment' button, the app should add this event to the native calendar. My first thought was saving an .ical file and open it, till i recognized that this isn't the most

[Angular | Capacitor] Interact With Your Native Calendar