Sam
07/21/2022, 3:54 PMembedAndSignAppleFrameworkForXcode
in the build phase.
This happens when attempting to upload to the appstore (everything works locally)
The binary file '<http://iosApp.app/Frameworks/shared.framework/shared|iosApp.app/Frameworks/shared.framework/shared>' is not permitted. Your app can't contain standalone executables or libraries, other than a valid CFBundleExecutable of supported bundles.
Sam
07/21/2022, 4:39 PMlistOf(
iosX64(),
iosArm64(),
iosSimulatorArm64()
).forEach {
it.binaries.framework {
baseName = "shared"
isStatic = true <-- Commenting this out fixes the issue
}
}
Chris Mulder
07/21/2022, 5:50 PMSam
07/21/2022, 6:05 PMChris Mulder
07/21/2022, 6:15 PMSam
07/21/2022, 7:07 PMChris Mulder
07/21/2022, 7:09 PMSam
07/21/2022, 7:09 PMSam
07/26/2022, 10:17 AMStylianos Gakis
02/13/2024, 10:22 AMtasks.named("embedAndSignAppleFrameworkForXcode").configure {
enabled = false
}