Comment on Swift/Java interoperability tools and librariesparentComments−pjmlp1yExcept contrary to iOS, on Android the C and C++ surface is very small, and calling JNI is a huge performance bottleneck.Anyone that cares about performance on Android has to write the userspace logic directly in Java or Kotlin, and use Android IPC instead of JNI.
Comments
Except contrary to iOS, on Android the C and C++ surface is very small, and calling JNI is a huge performance bottleneck.
Anyone that cares about performance on Android has to write the userspace logic directly in Java or Kotlin, and use Android IPC instead of JNI.