Reputation: 27
I just downloaded Android Studio Flamingo 2 days ago and I found it strange that there is no longer an option to select languages on the new project screen when I create a new project anymore. When I create one, the language is always Kotlin, and I can't change it.
I tried to do it again and again everytime but the language keeps being in Kotlin. I wonder if I did anything wrong? Does anybody knows about this?
Upvotes: 0
Views: 129
Reputation: 87
You're trying to create a project with Jetpack Compose, which does not support Java at all. Of course, my personal recommendation is not to use Java for new projects, as Google recommends, but if you wish, you can always choose Basic Views Activity or Empty Views Activity template in Create Project wizard. There you can still choose between Kotlin and Java
Upvotes: 1