Programing

Xcode 8.3 / Xcode 9.0 프로비저닝 프로파일 장치 새로 고침

lottogame 2020. 8. 15. 09:42
반응형

Xcode 8.3 / Xcode 9.0 프로비저닝 프로파일 장치 새로 고침


새 장치를 추가했습니다. Xcode 8이 서명 자산을 자동으로 관리하므로 프로비저닝 프로파일을 어떻게 새로 고칠 수 있습니까?

이 질문을 찾았습니다. Xcode 7에서 관리하는 팀 프로비저닝 프로필의 장치를 새로 고치시겠습니까? – 그러나 우리는 Xcode 8.3에서 그렇게 할 수 없습니다.

장치가 없어서 포털에 수동으로 추가하고 프로비저닝 프로파일도 편집했지만 Xcode가 다시 다운로드하지 않습니다.


이것이 당신이해야 할 일입니다.

  1. ~/Library/MobileDevice/Provisioning\ Profiles/거기에서 모든 프로비저닝 프로파일로 이동하여 삭제하십시오.
  2. XCode> 환경 설정> 계정으로 이동하여 Apple ID를 선택하십시오.
  3. 를 클릭하십시오 Download All Profiles. 그리고 모든 프로비저닝 프로파일을 다시 다운로드합니다.

여기에 이미지 설명 입력

Xcode 9

1 단계와 2 단계는 동일하게 유지됩니다.

  1. Download Manual Profiles프로비저닝 프로파일을 업데이트 하려면 클릭하십시오 .

다음 과 같이 앱 .mobileprovision 파일을 제거합니다 .

터미널의 명령은 다음과 같습니다. rm

여기에 이미지 설명 입력


1 단계. 바탕 화면을 클릭 한 다음 상단 메뉴에서 이동 > 폴더로 이동 ...

여기에 이미지 설명 입력

2 단계. 다음 경로를 쓰거나 붙여넣고 다음을 입력합니다.

~ / Library / MobileDevice / Provisioning \ Profiles /

여기에 이미지 설명 입력

3 단계. 프로비저닝 프로파일 폴더를 선택 하고 그 안의 모든 프로비저닝 프로파일을 삭제합니다.

여기에 이미지 설명 입력

4 단계. xCode 기본 설정 > 계정 > Apple ID 로 이동 한 다음 수동 프로파일 다운로드 버튼 을 클릭 합니다.

여기에 이미지 설명 입력


First delete the provisioning profile from ~/Library/MobileDevice/Provisioning\Profiles/ , then edit provisioning profile from developer portal and select all devices while editing Provisioning profile. Then download this profile and open in your Xcode.


To add devices to your provisioning profile in Xcode 8 with automatic code signing, you simply need to build to the device in Xcode. Xcode will add the device's UDID and regenerate the provisioning profile automatically. If you don't have physical access to the device, I don't think there is a way to add it to your provisioning profile without going back to manually managing your devices and profiles.

참고URL : https://stackoverflow.com/questions/44060482/xcode-8-3-xcode-9-0-refresh-provisioning-profile-devices

반응형