xcode iTunes Connect 没有显示我上传的 IPA
声明:本页面是StackOverFlow热门问题的中英对照翻译,遵循CC BY-SA 4.0协议,如果您需要使用它,必须同样遵循CC BY-SA许可,注明原文地址和作者信息,同时你必须将它归于原作者(不是我):StackOverFlow
原文地址: http://stackoverflow.com/questions/30753361/
Warning: these are provided under cc-by-sa 4.0 license. You are free to use/share it, But you must attribute it to the original authors (not me):
StackOverFlow
iTunes Connect not showing my uploaded IPA
提问by Husein Behboodi Rad
I want to add a new version for my iOS application. I created a new version tab for my app in the iTunes Connect, set the information required, save them. Then I go to Xcode and make a archive, validate it and the pressed submit for Appstore.
我想为我的 iOS 应用程序添加一个新版本。我在 iTunes Connect 中为我的应用程序创建了一个新版本选项卡,设置所需的信息,保存它们。然后我去 Xcode 并制作一个存档,验证它并按下 Appstore 提交。
After a few minutes the process done successfully but in the iTunes Connect no build appear and I can not "Submit to review". Under builds section it keeps saying: "Submit your builds using Xcode 5.1.1 or later, or Application Loader 3.0 or later."
几分钟后,该过程成功完成,但在 iTunes Connect 中没有出现构建版本,我无法“提交审核”。在构建部分下,它一直说:“使用 Xcode 5.1.1 或更高版本,或 Application Loader 3.0 或更高版本提交您的构建。”
What is the problem?
问题是什么?
回答by SaoBiz
For those that have uploaded their app through Xcode, but don't see it under the 'Build' heading on the 'App Store' tab, do the follow.
对于那些通过 Xcode 上传了他们的应用程序,但在“App Store”选项卡上的“Build”标题下看不到它的人,请执行以下操作。
Go to the Activity
tab and it will show you a list of builds for your app. You should see the app you just uploaded in this list and it will say that it is (Processing)
.
转到Activity
选项卡,它将显示您的应用程序的构建列表。您应该会在此列表中看到您刚刚上传的应用程序,它会说它是(Processing)
。
Wait about 15 - 20 mins for it to process and then you can continue on with listing your app.
等待大约 15 - 20 分钟让它处理,然后你可以继续列出你的应用程序。
回答by Azik Abdullah
If we upload from Xcode 8, we need to check if any privacy keys to be added in the info.plist
.
如果我们从 Xcode 8 上传,我们需要检查是否有任何要添加到info.plist
.
Like, NSCameraUsageDescription
,NSPhotoLibraryUsageDescription
,NSLocationWhenInUseUsageDescription
,NSLocationAlwaysUsageDescription
.
比如, NSCameraUsageDescription
, NSPhotoLibraryUsageDescription
, NSLocationWhenInUseUsageDescription
, NSLocationAlwaysUsageDescription
。
In my app I missed to add NSCalendarsUsageDescription
.
在我的应用程序中,我错过了添加NSCalendarsUsageDescription
.
We should also add description for the key. If not, the build won't appear in itunesconnect.
我们还应该为密钥添加描述。如果没有,则构建将不会出现在 itunesconnect 中。
Hope, this will help someone.
希望,这会帮助某人。
回答by iman kazemayni
Also sometimes the problem send to your email. You should check it because there is no caution in your Xcode loader or iTunes console. Even you can't find any activity under the activity tab
有时问题也会发送到您的电子邮件。您应该检查它,因为您的 Xcode 加载程序或 iTunes 控制台中没有任何警告。即使您在活动选项卡下也找不到任何活动
回答by Mnsd
After submitting the ipa to appstore it will take minimum 15 - 30 min for showing in "Select a build before you submit your app." so till that you can monitor processing of your app in "Activity" tab.
将 ipa 提交到 appstore 后,至少需要 15 - 30 分钟才能显示在“提交应用程序之前选择构建版本”中。直到您可以在“活动”选项卡中监控应用程序的处理。
回答by Santu C
Go to your iTunes -> Prerelease tab, then you can see your uploaded build. It will be processing state. Please give it 15 minutes, and it will be ready to add from your app Version tab -> Build area.
转到您的 iTunes -> Prerelease 选项卡,然后您可以看到您上传的版本。它将是处理状态。请给它 15 分钟,它将准备好从您的应用程序版本选项卡 -> 构建区域添加。
回答by Abhishek Mishra
I faced same problem ... then I add .
我遇到了同样的问题......然后我添加了 .
<key>NSBluetoothPeripheralUsageDescription</key>
<string>$(PRODUCT_NAME) bluetooth use.</string>
in info.plist
file and again upload it will display in 20-30 minutes.
在info.plist
文件中并再次上传它将在 20-30 分钟内显示。
回答by Tashfeen
Make sure you are not using Xcode Beta. For the newer versions of Xcode, it expects you to archive and upload using the stable version. Hope it helps.
确保您没有使用 Xcode Beta。对于较新版本的 Xcode,它希望您使用稳定版本进行存档和上传。希望能帮助到你。
回答by Kieu Nguyen
I encountered a similar problem, my solution is to use the Application Loader and it has working for me.
我遇到了类似的问题,我的解决方案是使用 Application Loader,它对我有用。
回答by nikdange_me
Check your mail account, if there any issue apple sends you mail to your mail account associated with your developer account.
检查您的邮件帐户,如果有任何问题,苹果将邮件发送到与您的开发者帐户关联的邮件帐户。
This was my silly simple way to know the issue in the uploaded file.
这是我了解上传文件中问题的愚蠢简单的方法。