How to implement a Java and Kotlin compiler inside an Android app?
I am trying to create an Android app that would allow users to code and build entire Android apps directly inside the app. I want to implement both Java and Kotlin compilers in the app so as to allow users to build apps in Java as well as in Kotlin. I considered using an online compiler at first, however that makes compiling code slower and I want to compile the code instantly. So, how to implement Java and Kotlin compiler in an Android app?