Annotation processor that generate Swift JNI code for Kotlin headers
This annotation process only generate Swift JNI code. For compiling swift code for Android please use Swift Android Gradle plugin
- Add the following to your root build.gradle
allprojects {
repositories {
mavenCentral()
}
}
- Add the following to your project build.gradle
dependencies {
kapt "com.readdle.swift.java.codegen:compiler:$swift-java-codegen-version"
implementation "com.readdle.swift.java.codegen:annotations:$swift-java-codegen-version"
}
Documentation in progress...
There are few samples that use Swift Java Codegen:
When this project was started Kotlin was in beta development. That's why we decide to move on with Java as primary language. After 4 year of development we moved to Kotlin and break Java support. If for some reason you would like to use this project with Java, latest Java support version us stil available on Maven Central.
Very good question. Probably it's possible but it's quite complicated. We invest time to research code generation based on Swift and have a small prototype. But the development of this new tool is still at a very early stage.