Hi, just getting started with Kotlin/ Native and M...
# kotlin-native
k
Hi, just getting started with Kotlin/ Native and Multiplatform project. Im trying this setup on the build.gradle for native module.
Copy code
apply plugin: 'kotlin'
apply plugin: 'konan'

konanArtifacts {
    framework('GithubRepo', targets: ['iphone', 'iphone_sim']) {
        enableDebug true
        enableMultiplatform true

        srcDir 'main'
    }
}

dependencies {
    expectedBy project(':common')
    implementation "org.jetbrains.kotlin:kotlin-stdlib:$kotlin_version"    
}