- Notifications
You must be signed in to change notification settings - Fork11
SwiftJava/swift-android-kotlin
Folders and files
Name | Name | Last commit message | Last commit date | |
---|---|---|---|---|
Repository files navigation
An example application for mixing Swift and Kotlin in an Android application. This allows you to reuse model layer code from your iOS application when porting to Android. The "binding" between the Kotlin or Java code and Swift is completely type safe with all JNI code automatically generated using a script. Building the Swift code is performed using the Swift Package manager and a small gradle plugin.
Requires a build of the latest Android toolchain downloadablehere. Once you've extracted the toolchain, runswift-install/setup.sh
to get started and install the gradle plugin. You then run./gradlew installDebug
or build the project in Android Studio. Make sure the that theANDROID_HOME
environment variable is set to the path to anAndroid SDK. The phone must be api 21 aka Android v5+ aka Lollipop or better (I used an LG K4.)
To create a new application, decide on a pair of interfaces to connect to and from your Swiftcode and place them in aJava Source. Use the command./genswift.sh
in theSwiftJava Project to generate Swift (& Java) sources to include in your application or adapt thegenhello.sh script. Your app's onlyPackage.swiftdependency should be the core JNI interfacing codejava_swift.
This example is coded to work with version 7 of the toolchain which has some additional requirementsto work around requirements of the Swift port of Foundation. The cache directory used by web operationsneeds to be setup in the environment variable "TMPDIR". This would usually be the value ofContext.getCacheDir().getPath() from the java side. In addition, to be able to use SSL youneed to add aCARoot info file to the application'sraw resources and copy it to this cache directory to be picked up by Foundation as follows:
setenv("URLSessionCertificateAuthorityInfoFile", cacheDir! + "/cacert.pem", 1)setenv("TMPDIR", cacheDir!, 1)
If you don't want peer validation you have the following option (not recommended at all)
setenv("URLSessionCertificateAuthorityInfoFile", “INSECURE_SSL_NO_VERIFY”, 1)
To build, setup the Gradle plugin, then run./gradlew installDebug
This demo is licensed under the Creative Commons CC0 license:do whatever you want.
About
Kotlin/Swift integration example
Topics
Resources
Uh oh!
There was an error while loading.Please reload this page.