Amit
Amit

Reputation: 3702

Can I use third party java libraries(.jar) for Android development with Kotlin?

I haven't moved to Kotlin for Android development yet, just wondering if Kotlin supports the available third party libraries for Android as is or they need to be updated in order to work with Kotlin?

Upvotes: 28

Views: 12040

Answers (3)

Ronak Thakkar
Ronak Thakkar

Reputation: 2525

Yes, as Kotlin is 100% interoperable with Java, and both works on JVM. so one can easily use Java libraries with Kotlin.

Please refer this.

Upvotes: 9

homerman
homerman

Reputation: 3569

yes, Kotlin is fully interoperable with Java

Upvotes: 2

Related Questions