我通过手机删除了我的应用程序,当我尝试通过Android工作室再次启动它时,它给出了一个错误

时间:2016-08-23 12:34:43

标签: android

大家好,我已经意外删除了我在手机上工作的应用程序,当我回到家并尝试通过Android工作室启动时,它给了我错误:

08/23 05:25:27: Launching app
No local changes, not deploying APK
$ adb shell am start -n "com.example.andy.sunshine.app/com.example.andy.sunshine.app.MainActivity" -a android.intent.action.MAIN -c android.intent.category.LAUNCHER
Error while executing: am start -n "com.example.andy.sunshine.app/com.example.andy.sunshine.app.MainActivity" -a android.intent.action.MAIN -c android.intent.category.LAUNCHER
Starting: Intent { act=android.intent.action.MAIN cat=[android.intent.category.LAUNCHER] cmp=com.example.andy.sunshine.app/.MainActivity }
Error type 3
Error: Activity class {com.example.andy.sunshine.app/com.example.andy.sunshine.app.MainActivity} does not exist.

Error while Launching activity

我该怎么做才能克服这个问题。请帮帮我!

2 个答案:

答案 0 :(得分:1)

Android Studio认为没有任何更改,也没有安装新的APK。解决方法是在APK未更改时禁用"跳过安装"运行>中的选项编辑配置。

enter image description here

答案 1 :(得分:0)

The problem is in the build / run configuration of your project. You have 
to check the "Deploy application" checkbox in the Run/Debug 
Configuration screen, under the General tab.

希望对你有所帮助。