Logo Questions Linux Laravel Mysql Ubuntu Git Menu
 

avoid SwiftSupport folder in .ipa

In latest Xcode 7.1.1, ipa created has SwiftSupport folder. It increased ipa size around 20MB.

Old Xcode not added SwiftSupport folder inside ipa

How to avoid SwiftSupport folder in ipa ?

like image 978
Guru Avatar asked Dec 01 '15 17:12

Guru


1 Answers

Disable "Embedded Content Contains Swift Code" in your application build settings.

As @Rob Napier mentioned, but you can also set this flag to NO if you have a swift code project. The flag only means if you have an ObjC project which includes Swift code via a framework to indicate that you need swift support.

HOWEVER, it does not matter how big your IPA file is (if that's your concern) because Apple removes the folders on processing via iTunes connect As stated by an Apple Developer in the forums: https://forums.developer.apple.com/thread/16339

like image 159
Christian 'fuzi' Orgler Avatar answered Oct 20 '22 14:10

Christian 'fuzi' Orgler