英文:
Error: ITMS-90338 - Non-public API Usage in App Submission
问题
我正在使用 Xcode beta 版本 15 开发 Flutter 应用程序。
最近我更新了我的 Flutter 应用程序,并成功提交到 App Store Connect。然而,我收到了一封电子邮件通知,提到了错误代码 ITMS-90338,指示非公开的 API 使用。
已经尝试过的方法:
- 我尝试使用 transporter 进行上传。
- 尝试执行以下命令:
flutter clean
rm -rf ios/Flutter/Flutter.framework
flutter build ios --release
英文:
I am using Xcode beta version 15 for Flutter app.
I recently updated my Flutter app and successfully submitted it to App Store Connect. However, I received an email notification mentioning the error code ITMS-90338, indicating non-public API usage.
Things which i've already tried
- I've tried uploading it using transporter
- Tried using this also
flutter clean
rm -rf ios/Flutter/Flutter.framework
flutter build ios --release
答案1
得分: 1
无法使用测试版工具提交应用到应用商店。请使用Xcode 14重新构建您的应用并重新提交。
当Xcode 15发布候选版本可用于提交应用时,苹果将提供指导。
英文:
You cannot submit apps to the App Store using beta tools.
Rebuild your app with Xcode 14 and resubmit.
Apple will provide guidance when an Xcode 15 release candidate can be used to submit apps.
通过集体智慧和协作来改善编程学习和解决问题的方式。致力于成为全球开发者共同参与的知识库,让每个人都能够通过互相帮助和分享经验来进步。
评论