我有一个IntelliJ Android项目,我成功地导入到Android Studio 0.4.0。如果我不改变manifest中的任何东西,它就能很好地工作。然而,当我想要改变启动器活动并运行时,它会失败,并出现以下错误:

Launching application: com.trackingeng/LandingActivity.
DEVICE SHELL COMMAND: am start -D -n "com.trackingeng/LandingActivity"  
    -a android.intent.action.MAIN -c android.intent.category.LAUNCHER
Starting: Intent { act=android.intent.action.MAIN  
    cat=[android.intent.category.LAUNCHER] cmp=com.trackingeng/LandingActivity }
Error type 3
Error: Activity class {com.trackingeng/LandingActivity} does not exist.

当我点击同步项目与Gradle文件,它输出:

Project Sync
The project 'TrackingEng' is not a Gradle-based project

运行设置:


当前回答

我也面临同样的问题,我认为解决方案比我想象的要简单得多 只需要到你的manifest中更改包名,而不是在Gradle中将相同的包名复制到你的应用iD中

defaultConfig {applicationId "你的包名在这里"} 就这样,祝你好运

其他回答

我认为这个问题发生的另一个原因是,它没有完全删除设备上的所有用户。

进入“设置”->应用程序->您的应用程序->单击右上方的3个点->卸载所有用户

这对我很管用。尤其是当你改变了应用的图标或者摆弄了AndroidManifest.xml文件时。

Had the same error, with a much newer version of Android Studio (version 4.1) . A fresh install of Android Studio + a fresh "basic Activity" template would run into error type 3 for hours. I am on win 10 - my problem was how to kill the gradle cache. A good answer above showed a screen snapshot from gradle, but i didn't find it in Android Studio 4.1. Also the env vars for gradle had not been set , and the commandline for gradle didn't work. So .. here is how it worked finally. I went to C:\Users\myusername\ .gradle. This has subdir "caches". I deleted everything inside. Worked ! I did close Android Studio before, restarted and then it worked nicely. Ah forgot one thing- i run the device emulator (defauöt device), i.e. no physical device yet.

有时应用程序安装在客户用户在您的移动,所以尝试切换客户和卸载应用程序。

此外,请尝试执行以下命令卸载应用程序 adb卸载包“您的包名称”

即使我也有同样的问题,但上面的解决方案都不适合我。 问题是,我冻结了我试图通过钛备份运行的特定应用程序,因此我得到了上述错误。我在Eclipse和Android Studio中都尝试了。

意识到这一点后,我只是卸载了应用程序,然后再次运行它。

我在过去的某个地方也遇到过同样的问题。这样的问题实际上发生在我们做一些重构,如重命名,在项目中移动文件等。重命名和移动文件需要在gradle文件中进行更改,因此每当您重命名或移动一些文件时,只需清理项目:

Build ->清洁项目

清理项目只是删除.class文件并重新编译项目。基本上,它强制项目重新构建。

有时这种类型的错误没有在清洗项目上清洗,然后尝试从设备(无论是模拟器还是物理设备)卸载应用程序,然后再次运行应用程序。希望这对你有帮助,它对我有50%的帮助。

注意:-无论何时你有任何错误,只是不要去谷歌,如果这不起作用,清理项目,做你想谷歌。