Samuel Bichsel
08/13/2020, 8:37 AMtargets {
targetFromPreset(presets.android, "android")
final def iOSTarget = project.findProperty("kotlin.native.cocoapods.target") == "ios_arm" \
? presets.iosArm64 : presets.iosX64
fromPreset(iOSTarget, 'ios')
}
cocoapods {
summary = "Shared Kotlin/Native module"
homepage = "<https://github.com/dreipol>"
frameworkName = "Shared"
}
I read in the documentation, that yore able to export it like that , but that doesn’t work with the cocoapods integration:
fromPreset(iOSTarget, 'ios').binaries {
framework {
export "ch.dreipol:dreimultiplatform:$dreiMultiplatformVersion"
}
}
Does anyone have a hint?yousefa2
08/13/2020, 8:52 AM