From 72ed0981aa5b06f47edf8cf883dbe23040fcd810 Mon Sep 17 00:00:00 2001 From: Nick R Date: Sat, 22 Jun 2024 10:46:56 -0400 Subject: [PATCH] Update ios deploy step to point to Transporter (#192) * Update ios deploy step to point to Transporter * Update deploying-your-application.md --------- Co-authored-by: damios --- wiki/deployment/deploying-your-application.md | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/wiki/deployment/deploying-your-application.md b/wiki/deployment/deploying-your-application.md index 0f1e35e6..1e94faaf 100644 --- a/wiki/deployment/deploying-your-application.md +++ b/wiki/deployment/deploying-your-application.md @@ -64,7 +64,7 @@ To create your IPA, run `gradlew ios:createIPA` This will create an IPA in the `ios/build/robovm` folder that you distribute to the Apple App Store. -To upload your app you will need to use the application loader within XCode (Xode->Open Developer Tool->Application loader) +To upload your app you will need to use [Transporter](https://apps.apple.com/us/app/transporter/id1450874784) from the Mac App store Note: as of iOS 11 instead of simply adding your icons into your data folder within your iOS project you need to include an asset Catalog. If you do not include one, you can still submit your app but later you receive a message regarding `Missing Info.plist value - A value for the Info.plist key CFBundleIconName is missing in the bundle '...'. Apps that provide icons in the asset catalog must also provide this Info.plist key.` To fix this, follow these [instructions to include an asset catalog](https://github.com/MobiVM/robovm/wiki/Howto-Create-an-Asset-Catalog-for-XCode-9-Appstore-Submission%3F).