我在網上搜索了很多,但沒有解決方案爲我工作。我創建Xcode Maven Plugin它成功地建立我的應用程序,並創建一個IPA但是當我要上傳它testflightapp它給了我這個錯誤的IPA:IPA無效:缺少嵌入式配置文件。你確定這是一個特設的?
Invalid IPA: missing embedded provisioning profile. Are you sure this is an ad hoc?
我已經加入供應在構建設置輪廓像下面的PIC
如果我用Xcode>產品>存檔手動創建ipa,我可以在testflightapp上成功上傳ipa。所以我的猜測是Xcode Maven Plugin無法讀取我的配置文件。我試圖強制使用配置文件指定它在像波紋管的pom文件:
<configuration>
<configurations>
<configuration>Debug</configuration>
<configuration>Release</configuration>
</configurations>
<provisioningProfile>42CB38B0-62BB-4242-BD03-72EDB7570842</provisioningProfile>
</configuration>
任何幫助,將不勝感激。