如何在不打算发布到应用商店的情况下构建ipa



我想创建一个应用程序,它可以放在网站上供用户下载,而不是像Dream11那样从游戏商店或应用商店下载。我创建了一个在iOS和Android的调试模式下都能完美工作的应用程序,安卓的flutter构建也非常出色。"flutter build ipa"命令导致错误-

No valid code signing certificates were found
You can connect to your Apple Developer account by signing in with your Apple ID
in Xcode and create an iOS Development Certificate as well as a Provisioning 
Profile for your project by:
1- Open the Flutter project's Xcode target with
open ios/Runner.xcworkspace
2- Select the 'Runner' project in the navigator then the 'Runner' target
in the project settings
3- Make sure a 'Development Team' is selected under Signing & Capabilities > Team. 
You may need to:
- Log in with your Apple ID in Xcode first
- Ensure you have a valid unique Bundle ID
- Register your device with your Apple Developer Account
- Let Xcode automatically provision a profile for your app
4- Build or run your project again
5- Trust your newly created Development Certificate on your iOS device
via Settings > General > Device Management > [your new certificate] > Trust
For more information, please visit:
https://developer.apple.com/library/content/documentation/IDEs/Conceptual/
AppDistributionGuide/MaintainingCertificates/MaintainingCertificates.html
Or run on an iOS simulator without code signing

现在我很困惑是否要做这些,因为我不会在应用商店上发布。无论应用程序是否进入应用商店,都必须这样做吗?或者是否有为iOS创建应用程序构建版本的变通方法?

您实际上有四个选项。

  1. 通过应用商店发布
  2. 苹果有一个相当新的程序,可以通过应用商店发布私人应用程序
  3. 试飞放行
  4. 创建企业开发人员帐户

所有这些选项都需要一个开发人员帐户。

相关内容

最新更新