Stefan Oltmann
03/16/2022, 5:07 PMassembleXCFramework
task. I see in the docs that there should be also assembleDebugXCFramework
and assembleReleaseXCFramework
tasks, but I don't see them... How can I only build the release version? I don't need debug.Thomas Kranzer
03/16/2022, 5:54 PMassemble[Projectname]ReleaseXCFramework
.
However, this command is not listed within the available gradle tasks, there i only see assemble[Projectname]XCFramework
but not the build type specific ones.Stefan Oltmann
03/17/2022, 8:28 AMassembleXCFramework - Assemble all types of registered 'shared' XCFramework
But I remember in the past there were tasks that had "shared" in the name.
Now I get Task 'assembleSharedReleaseXCFramework' not found in root project.
Stefan Oltmann
03/17/2022, 9:01 AMiosArm64 {
binaries.framework(
buildTypes = setOf(NativeBuildType.RELEASE)
) {
baseName = "shared"
embedBitcode("bitcode")
xcf.add(this)
}
}