我正在使用build.gradle脚本创建.ipa,但它正在创建非常大的IPA文件,因为它包含该IPA中的SwiftSupport文件夹。如何避免使用build.gradle脚本在IPA中包含SwiftSupport?是否需要为xcodebuild任务设置任何参数?
这是我的xcodebuild任务:
xcodebuild {
scheme = 'Test'
configuration='Release'
target = 'Test'
ipaFileName = "Test"
simulator = false
signing {
identity = 'iPhone Developer'
certificateURI = new File('/Volumes/Data/Certificates.p12').toURI()
certificatePassword = 'password'
mobileProvisionURI = new File('/Volumes/Data/d333d442bfd3.mobileprovision').toURI()
}
}