Skip to content

Instantly share code, notes, and snippets.

@giordanocardillo
Last active May 27, 2020 07:36
Show Gist options
  • Star 0 You must be signed in to star a gist
  • Fork 0 You must be signed in to fork a gist
  • Save giordanocardillo/10e255e241057b395cbed71ad44a6451 to your computer and use it in GitHub Desktop.
Save giordanocardillo/10e255e241057b395cbed71ad44a6451 to your computer and use it in GitHub Desktop.
Installing Provisioning Profiles

Installing provisioning profiles

  1. Download your provisioning profile from the apple developer portal
  2. Extract provisioning profile UUID
    uuid=`grep UUID -A1 -a profile.mobileprovision | grep -io "[-A-F0-9]\{36\}"
  3. Rename the provisioning profile file as <uuid>.mobileprovision
    mv profile.mobileprovision $uuid.mobileprovision
  4. Copy the provisioning profile file to the ~/Library/MobileDevice/Provisioning\ Profiles/ folder
    cp $uuid.mobileprovision ~/Library/MobileDevice/Provisioning\ Profiles/$uuid.mobileprovision
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment