I recently upgraded to android studio bumblebee and all my .kts
files are not getting picked up by the ide when using the embedded jdk. The project still builds fine but I cannot properly edit these files since the ide is not recognizing them.
If I switch the jdk version to 1.8 then everything works fine but I would like to use java 11 since that’s what android studio recommends.
This is what my buildSrc looks like
Is this a known issue with android studio bumblebee and embedded jre or am I missing something here?
2
Answers
Try replacing the content of the build.gradle.kts(buildSrc) with the following .The following code is working for me in my current multi-module project :
According to this issue deleting
file fixes this issue