KISS 🇺🇦

Stop the war!

Stop the war in Ukraine! Fuck putin!

More information is at: https://war.ukraine.ua/.

There is a fund to support the Ukrainian Army: https://savelife.in.ua/en/donate/, and there is a special bank account that accepts funds in multiple currencies: https://bank.gov.ua/en/about/support-the-armed-forces. I donated to them. Please donate if you can!

Killer putin

Killer putin. Source: politico.eu.

Arrested putin

"It hasn't happened yet, but it will happen sooner or later. Beautiful photo, isn't it?" Source: twitter.

Jenkins, Xcode: "No matching provisioning profile found"

| comments

If you have some kind of a script to build your Xcode project from command line (eg, on Jenkins), there is one of the many useful environment variables you can set to modify the build process: PROVISIONING_PROFILE (I couldn’t find any official documentation regarding this env var). It allows you to pick an exact provisioning profile to use with your ipa archive, if the autodetection doesn’t work for some reason. But you may stumble upon seemingly strange errors.

For example, have you seen an error like this?

1
2
3
4
5
6
7
=== BUILD TARGET incredible OF PROJECT astounding WITH CONFIGURATION Release ===

Check dependencies
Code Sign error: No matching provisioning profile found: Your build settings specify a provisioning profile with the UUID “astounding_project_InHouse”, however, no such provisioning profile was found.
CodeSign error: code signing is required for product type 'Application' in SDK 'iOS 7.1'

** BUILD FAILED **

Looking into ~/Library/MobileDevice/Provisioning Profiles/ you can see the file named astounding_project_InHouse.mobileprovision. The fix is the provisioning profile’s filename should be in the form of UUID.mobileprovision.

One more thing. You can use this script to rename the files:

1
2
3
for f in *.mobileprovision; do
    mv "$f" $(grep -a -A1 UUID $f | tail -1 | sed -E 's/.*>(.*)<.*/\1/').mobileprovision;
done

And another thing. You can preview some useful info from provisioning profile files with CocoaDeveloper Quicklook Plugin in Finder. Just install it with brew cask install ipaql.

Despite the big changes in Xcode 4 and 5, Apple’s code signing setup still leaves much to be desired.

ps. You may find another post on Jenkins and Xcode useful here: Jenkins and Xcode: “User interaction is not allowed”.

Comments