coolcat
02/05/2019, 3:26 PMfromPreset(iOSTarget, 'iOS') {
binaries {
framework {
baseName = 'myname'
}
}
compilations.main.outputKinds('FRAMEWORK')
}
I see myname.framework present in build/bin/iOS/debugFramework and releaseFramework. But the build/xcode-frameworks folder generated by the packForXCode task still contains main.framework.
Should I now be pointing my Xcode project directly to build/bin/iOS/debugFramework and releaseFramework? Or is it basically simplest to suck it up and rename the references in my iOS code to main instead of myname?Sam
02/05/2019, 3:36 PMSam
02/05/2019, 3:44 PMbasher
02/05/2019, 4:15 PMcompilations.main.outputKinds line fixed itrusshwolf
02/05/2019, 6:13 PM