Can I use third-party java libraries (.jar) to develop Android with Kotlin?

I have not moved to Kotlin for Android development yet, I just wonder if Kotlin supports available third-party libraries for Android as it is or do they need to be updated to work with Kotlin?

+5
source share
3 answers

yes, Kotlin is fully compatible with Java

+1
source

Yes , since Kotlin is 100% Java compatible , and both work on the JVM. therefore, you can easily use the Java libraries with Kotlin.

Please refer to this .

+1
source

Source: https://habr.com/ru/post/1268722/


All Articles