欢迎您访问程序员文章站本站旨在为大家提供分享程序员计算机编程知识!
您现在的位置是: 首页

Activity class {} does not exist

程序员文章站 2024-03-08 18:56:58
...

今天上午从git上拉了代码编译,发现As报错,如下:

11/04 11:11:47: Launching 'app' on HUAWEI ELS-AN00.
$ adb shell am start -n "com.swap.space.zh3721.store/com.swap.space.zh3721.store.ui.welcom.WelcomeActivity" -a android.intent.action.MAIN -c android.intent.category.LAUNCHER
Error while executing: am start -n "com.swap.space.zh3721.store/com.swap.space.zh3721.store.ui.welcom.WelcomeActivity" -a android.intent.action.MAIN -c android.intent.category.LAUNCHER
Starting: Intent { act=android.intent.action.MAIN cat=[android.intent.category.LAUNCHER] cmp=com.swap.space.zh3721.store/.ui.welcom.WelcomeActivity }
Error type 3
Error: Activity class {com.swap.space.zh3721.store/com.swap.space.zh3721.store.ui.welcom.WelcomeActivity} does not exist.

Error while Launching activity

从日志来看,说WelcomeActivity这个类不存在,我检查了AndroidManifest配置文件,发现这个类存在而且配置的包名和路径都是对的,想想是不是手动卸载不干净导致的,试了下果然可以,耽误了我一个小时的时间,在此记录下,下次别犯同样的错误。

adb uninstall com.swap.space.zh3721.store   

相关标签: Android Studio