Sebastien Leclerc Lavallee
10/15/2024, 2:35 PMval xcf = XCFramework()
listOf(
iosArm64(),
tvosArm64()
).forEach {
it.binaries.framework {
baseName = project.name
xcf.add(this)
isStatic = true
}
}
And let's say I have a Swift file that add some code. Is it possible to bundle it inside that XCFramework?
Thanks!François
10/15/2024, 3:24 PMFrançois
10/15/2024, 3:25 PMSebastien Leclerc Lavallee
10/15/2024, 3:31 PM