Hello ! I am trying to build a kotlin native andro...
# kotlin-native
d
Hello ! I am trying to build a kotlin native android executable -- this is NOT the same as an android application('apk') I followed the tutorials for a basic 'hello world' ( just a println() ) I could generate a .so file but not an executable - the examples in the docs were for other targets but they implied this should work for any supprted target. Any suggestions on if and how to genarate a native executable for android ARM ? This is my gradle build
Copy code
plugins {
    id 'org.jetbrains.kotlin.multiplatform' version '1.6.10'
    id 'application'
}

group = 'nexstra'
version = '1.0-SNAPSHOT'

kotlin {
    androidNativeArm32 {
        binaries {
                executable {
                    entryPoint = 'main'
            }
        }
        println( binaries.findExecutable('mpp','RELEASE'))
    }
}
repositories {
    mavenCentral()
}

dependencies {
    testImplementation 'org.jetbrains.kotlin:kotlin-test'
}

test {
    useJUnitPlatform()
}


application {
    mainClassName = 'MainKt'
}