我正在使用助手来学习和开发 android 应用程序。最近我一直面临这个错误;:当我向我的 build.gradle 添加任何新依赖项时,appt exited with code 11 我已经添加了 9 个依赖项,并且第 10 个会显示此错误是否可能是任何依赖项如果我删除那个依赖和rebild项目错误消失了不知道错误是什么需要帮助!
问问题
454 次
1 回答
1
按照这个简单的步骤来恢复这个错误:
方法一:
-Go to File->project structure->Project
-Check Android plugin Version and change it to 1.3.0(Latest one)
-Go to File->project structure->app->Properties->Build Tools Version
-Change it to latest one. Also do this for any other module you have for your project.
-Clean and build project.
注意:如果您的构建工具版本低于 22.0.1,那么您在 gradle 构建时可能仍然会遇到同样的错误,因此请将您的 SDK 从 SDK Manager 更新到最新版本,然后重新启动 android studio 并按照上述步骤操作。
方法二:
-If you don't want to update build tools version or you don't have latest SDK version just Go to File->project structure->Project.
-Check Android plugin Version and change it to 1.0.0(Older one)
-Clean and build project.
我推荐方法1。
于 2016-02-11T12:29:33.577 回答