APK path is not specified for module “Example-Example”

前端 未结 13 1001
夕颜
夕颜 2021-02-04 05:18

I am newbie in the world of android app development. I was creating a project Example on Android Studio. I have my LunchList.java file in

13条回答
  •  借酒劲吻你
    2021-02-04 06:16

    this happened when i update to 2.0. i had to change the dependencies in the build.gradle file under src dir not gradle dir. change from

    dependencies {
    classpath 'com.android.tools.build:gradle:0.4.0'
    }
    

    to

    dependencies {
    classpath 'com.android.tools.build:gradle:0.5.+'
    }
    

提交回复
热议问题