Caused by: java.lang.IllegalStateException: package not installed?

后端 未结 2 715
臣服心动
臣服心动 2021-01-07 19:09
06-26 05:07:17.890: E/AndroidRuntime(3231): FATAL EXCEPTION: main
06-26 05:07:17.890: E/AndroidRuntime(3231): Process: com.sample.calendar, PID: 3231
06-26 05:07:17.         


        
相关标签:
2条回答
  • 2021-01-07 19:50

    Try using older gradle dependencies version in you build.gradle file. It helped me.

    Use:

    compile 'com.android.support:appcompat-v7:23.1.0'
    compile 'com.android.support:design:23.1.0'
    

    Don't use:

    compile 'com.android.support:appcompat-v7:23.2.0'
    compile 'com.android.support:design:23.2.0'
    

    I find solution here - Android Studio FloatingActionButton error

    0 讨论(0)
  • 2021-01-07 20:03

    I think this happens when you run the app from eclipse while you already have the previous version installed ? This won't happen if you uninstall the app before running it again from eclipse. Also, this won't cause any problems.

    0 讨论(0)
提交回复
热议问题