App Store Testing - Newbie

I try to check my application, I look through the doc and it says

Before archiving the application, make sure that the binary is contained. That is, if it relies on static libraries, make sure these libraries are part of the binary application by setting β€œSkip”. Set the build setting to β€œYes” in the release build configuration of the target that creates and archives the application.

After completing the above step, and when I archive the application, I do not see the archive file in the table below (in Organizer). Why is this and how can I submit my application for review? (do not send to application store, validation only)

Note When I installed the Build configuration in Ad Hoc it Archives correctly (and appears in Organizer ), but when I installed the Build configuration in Release , the archive does not appear in Organizer .

+4
source share
1 answer

Configuring Skip Install on YES can sometimes be problematic, I will only use it if you have a specific problem that it solves. The Xcode user guide is not as modern as it should be, especially for the latest releases, where the archiving process has changed significantly.

Try turning Skip Install back by default NO and be sure to use the Product> Archive command, and not Build For> Archive.

+1
source

Source: https://habr.com/ru/post/1403339/


All Articles