Avoid SwiftSupport folder in .ipa

In the latest Xcode 7.1.1, the created ipa has a SwiftSupport folder. He increased the ipa size to about 20 MB.

Old Xcode did not add SwiftSupport folder inside ipa

How to avoid the SwiftSupport folder in ipa?

+4
source share
3 answers

Disable "Inline content contains Swift Code" in the application build settings.

As @Rob Napier noted, but you can also set this flag to NO if you have a project with fast code. The flag only means if you have an ObjC project that includes Swift code through the framework to indicate that you need fast support.

, , IPA ( ), Apple iTunes connect. Apple : https://forums.developer.apple.com/thread/16339

+9

Xcode 7.2. , "SwiftSupport", ipa Xcode 7.2. ( , , Swift .)

+2

" Swift Code" .

enter image description here

, , , Swift . , Swift, .

By default, this parameter is set to None, so it is possible that something you import (CocoaPods?) Installs it. Or that something you import has Swift code in it ....

+1
source

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


All Articles