내 Xcode프로젝트에서 쓰는 provisioning profile uuid 확인하는 방법

2018. 1. 23. 18:21Programming/iOS

확인하고 싶은 프로비저닝 프로파일이 설치되어 있지 않은 경우
애플개발자 센터에서 프로비저닝 프로파일을 다운로드 한 후 더블클릭하여 설치.

  1. ~/LibraryMobileDevice/Provisioning\ Profiles/ 로 이동
  2. ls
그런데 나오는 목록이 너무 많은 경우?

다음과 같이 확인.

  1. 확인하려는 xcode프로젝트로 이동
    > cd blarblar.xcodeproj
    > grep ‘PROVISIONING_PROFILE’ project.pbxproj

  2. ~/LibraryMobileDevice/Provisioning\ Profiles/로 이동하여
    1번에서 확인한 uuid를
    > openssl smime -in uuid.mobileprovision -inform der -verify
    이 provisioning파일에 대한 상세정보가 나온다.