Notice
Recent Posts
Recent Comments
Link
투케이2K
76. (TWOK/ERROR) [Ios] 엔터프라이즈 ipa 파일 수동 설치 에러 - 앱을 설치할 수 없습니다. (unable install) 잠시후 다시 시도해주세요. 본문
투케이2K 에러관리
76. (TWOK/ERROR) [Ios] 엔터프라이즈 ipa 파일 수동 설치 에러 - 앱을 설치할 수 없습니다. (unable install) 잠시후 다시 시도해주세요.
투케이2K 2022. 6. 16. 14:43[환경 설정 및 설명]
프로그램 : Xcode
설 명 : 엔터프라이즈 ipa 파일 수동 설치 에러 - 앱을 설치할 수 없습니다. (unable install) 잠시후 다시 시도해주세요.
[에러 원인]
1. 아이폰 기기 os 버전 15 이상에서 도메인 보안 정책 강화로 인해 plist , ipa 파일이 설치 되지 않는 이슈
[해결 방법]
1. 사용자 네트워크 사용 설정 (5G , LTE) 수행 실시
2. 설정 > 스크린 타임에서 차단 및 제한 설정 풀기 실시
3. ipa 파일을 다운 받을 수 있는 html 페이지 접속 경로가 https 인지 확인
4. plist 파일에 적용된 ipa 파일 경로가 https 로 되어있는지 확인
5. 특정 도메인에서 아이폰 os 15 버전 미만은 ipa 파일이 정상 다운이 되지만 15 버전 이상 다운되지 않는 경우 도메인 주소를 변경한 후 다시 시도 실시
- 기존 : https://old.app.com
- 변경 : https://new.app.com
6. html 파일 경로와 plist , ipa 파일 경로를 동일 선상에 설정 실시
- html : https://new.app.com/downLoadPage.html
- plist : https://new.app.com/manifest.plist
- ipa : https://new.app.com/iosFile.ipa
[plist 파일 형식 소스코드]
<?xml version="1.0" encoding="UTF-8"?>
<!DOCTYPE plist PUBLIC "-//Apple//DTD PLIST 1.0//EN" "http://www.apple.com/DTDs/PropertyList-1.0.dtd">
<plist version="1.0">
<dict>
<key>items</key>
<array>
<dict>
<key>assets</key>
<array>
<dict>
<key>kind</key>
<string>software-package</string>
<key>url</key>
<string>실제 서버에 저장된 ipa 파일 경로 지정 (ex - https://example.test.com:3500/IOS/test.ipa)</string>
</dict>
</array>
<key>metadata</key>
<dict>
<key>bundle-identifier</key>
<string>번들아이드 (ex - com.test.app)</string>
<key>bundle-version</key>
<string>1.0</string>
<key>kind</key>
<string>software</string>
<key>title</key>
<string>앱 이름 (ex - test)</string>
</dict>
</dict>
</array>
</dict>
</plist>
반응형
'투케이2K 에러관리' 카테고리의 다른 글
Comments