I have an Android App developed using Java. I now want to start using Kotlin for the same app. Is it possible to use Kotlin and Java side-by-side in an existing app?
It is possible to use Java and Kotlin side by side. If it is a small project I would recommend you converting your existing java files into Kotlin, this can be easily done using the ctrl+alt+shift_k shortcut. if the project is pretty large you can keep your java classes while creating new activities in Kotlin. I have an app that many of my model classes are written in java yet the activity and the UI itself is written in Kotlin. Since Kotlin is based on Java there is no problem having both languages in the same project as long as your java files are created in different classes than your Kotlin classes