2017-11-01 16 views
1

ipa를 다운로드하기 위해 파일 세 개를 만들었습니다. 그러나이 링크는 브라우저에서 응용 프로그램을 다운로드 할 수 없다는 의미에서 작동하지 않습니다.ipa에 대한 URL을 만듭니다. 링크가 작동하지 않습니다

MyProject.ipa 
manifest.plist 
a.html 

manifest.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>https://www.dropbox.com/s/testUser/MyProject.ipa?dl=0</string> 
       </dict> 
      </array> 
      <key>metadata</key> 
      <dict> 
       <key>bundle-identifier</key> 
       <string>com.ttt.app</string> 
       <key>bundle-version</key> 
       <string>1.0.0</string> 
       <key>kind</key> 
       <string>software</string> 
       <key>title</key> 
       <string>app</string> 
      </dict> 
     </dict> 
    </array> 
</dict> 

a.html

<a href="itms-services://?action=download-manifest&url=https://www.dropbox.com/s/testUser/manifest.plist?dl=0">Install App</a> 

내 문제를 찾기 위해 도와주세요. 모두에게 감사드립니다. :)

+1

작성 방법은 다음과 같습니다. https://stackoverflow.com/questions/47036056/export-ipa-for-testing-instead-appstore-with-ad-hoc/47037090#47037090 –

+0

예 완전히 같습니다. 왜 나쁘지 않은지 찾도록 도와주세요. – ieQsan

+1

이 주제에 대한 내 대답을 확인하십시오. https://stackoverflow.com/a/46241619/3397217 – LinusGeffarth

답변

1

당신이 당신의 https 서버로 드롭 박스를 사용하는 경우, 당신은 그렇지 않으면 작동하지 않습니다, 모든 링크에서 "dl.dropboxusercontent.com"와 "dropbox.com"를 교체해야합니다.

내 대답보기 here을 참조하십시오.

+0

대단히 감사합니다. 그것은 효과가 있었다. :) – ieQsan