kyonifer
11/18/2018, 7:40 PMcompilationName
and name
are read-only. I'm trying to change the default name of the project that gets used throughout the generated .h
file, but changing the project name to something else will affect the other platforms as wellserebit
11/18/2018, 7:58 PMkyonifer
11/18/2018, 8:12 PMthevery
11/18/2018, 9:54 PMkyonifer
11/19/2018, 2:52 AMarchivesBaseName
seems to not affect native targets. Using baseName.set
inside of components.main
is the trick that was working for me under the old-mpp dsl (kotlin-platform-native plugin) and I'm looking for a way to achieve the same under new-mpp (kotlin-multiplatform plugin). I can't find baseName settable on any scope I can think of: tried KotlinMultiplatformExtension
, KotlinNativeTarget
and KotlinNativeCompilation
. Is there somewhere else in the new-mpp DSL it should go?Liliia
11/20/2018, 5:27 AM