英文:
I am facing an issue with app distribution as my app is set to 'private,'
问题
我的应用程序在苹果商店中是私有的。
我遇到了一个问题,因为我的应用程序被设置为“私有”,而且我无法访问苹果商业经理或苹果学校经理。
如何使我的应用程序在苹果应用商店上可用?
英文:
my app is in private in apple store
I am facing an issue with app distribution as my app is set to 'private,' and I do not have access to Apple Business Manager or Apple School Manager.
How to make my app available on the Apple App Store?
答案1
得分: 1
你不能将私有应用更改为公共应用。
如果您希望您的应用在App Store上普遍可用,您需要在App Store Connect中创建一个新的应用记录,并提供一个独特的包标识符。您可以使用相同的代码来构建您的应用。
在您的Xcode项目中为新的包标识符添加一个额外的目标,然后将所有现有的源文件添加到此目标中。
然后,您可以像平常一样存档并提交审核。
英文:
You cannot change a private app to a public app.
If you want your app to be generally available on the App Store, you will need to create a new app record in App Store Connect with a unique bundle ID. You can use the same code to build your app.
Add an additional target to your Xcode project with the new bundle ID and then add all of the existing source files to this target.
You can then archive and submit for review as normal.
通过集体智慧和协作来改善编程学习和解决问题的方式。致力于成为全球开发者共同参与的知识库,让每个人都能够通过互相帮助和分享经验来进步。
评论