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

前端 未结 13 1169
夕颜
夕颜 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:08

    I find this:

    http://www.chrisdew.com/blog/2013/07/17/android-studio-nosuchmethoderror-lazystringarraylist/

    it is realy help for me.

    Thus, in my case, the problem was to have two libraries:

    protobuf-2.4.1.jar and new protobuf-2.5.0.jar

    it resulted error:

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

    To correct this, rename file protobuf-2.4.1.jar to protobuf-2.4.1.jar.disabled

    mv protobuf-2.4.1.jar protobuf-2.4.1.jar.disabled

提交回复
热议问题