Android: Unable to instantiate application

前端 未结 11 1596
别跟我提以往
别跟我提以往 2021-01-03 23:40

I renamed my package and now I get this strange error:

Unable to instantiate application
app.MyApplication: java.lan         


        
11条回答
  •  感动是毒
    2021-01-03 23:53

    Removing these lines worked for me:

    compileOptions {
       sourceCompatibility JavaVersion.VERSION_1_8
       targetCompatibility JavaVersion.VERSION_1_8
    }
    

    Update:
    The reason behind this issue is that i have not installed JAVA 8 on my PC

提交回复
热议问题