A quick question, if I want to compile both iosX64...
# multiplatform
p
A quick question, if I want to compile both iosX64 and iosArm64 that shares the same directory, e.g.
iosMain/kotlin
. How should I go about it? kotlin { targets { fromPreset(presets.android, ‘android’) fromPreset(presets.iosArm64, ‘ios’) { compilations.main.outputKinds(‘FRAMEWORK’) } }
h
Pass preset to gradle and run compilation twice for each of them
p
Pass preset to gradle and run compilation twice? What do you mean by that? 🙂