整合同事写的代码时,由于修改了package名称,需要修改大量文件,修改完成后,build报错:
AAPT2 error: check logs for details
2 解决
在terminal中输入:
gradlew compileDebug --stacktrace
报错信息如下:
FAILURE: Build failed with an exception.
* What went wrong:
Task 'compileDebug' is ambiguous in root project 'XXXXX'. Candidates are: 'compileDebugAidl', 'compileDebugAndroidTestAidl', 'compileDebugAndroidTestJavaWithJavac', 'compileDebugAndroidTestNdk', 'compil
eDebugAndroidTestRenderscript', 'compileDebugAndroidTestShaders', 'compileDebugAndroidTestSources', 'compileDebugJavaWithJavac', 'compileDebugNdk', 'compileDebugRenderscript', 'compileDebugShaders', 'compil
eDebugSources', 'compileDebugUnitTestJavaWithJavac', 'compileDebugUnitTestSources'.
* Exception is:
org.gradle.execution.TaskSelectionException: Task 'compileDebug' is ambiguous in root project 'XXXx'. Candidates are: 'compileDebugAidl', 'compileDebugAndroidTestAidl', 'compileDebugAndroidTestJavaWith
Javac', 'compileDebugAndroidTestNdk', 'compileDebugAndroidTestRenderscript', 'compileDebugAndroidTestShaders', 'compileDebugAndroidTestSources', 'compileDebugJavaWithJavac', 'compileDebugNdk', 'compileDebug
Renderscript', 'compileDebugShaders', 'compileDebugSources', 'compileDebugUnitTestJavaWithJavac', 'compileDebugUnitTestSources'.
这是输入命令:
gradlew compileDebugJavaWithJavac
结果如下
D:\Android_projects\XXXXXxn\app\build\intermediates\manifests\full\debug\AndroidManifest.xml:85: AAPT: error: unknown element found.
提示清单文件的标签有误,找到该路径下的清单,果然有问题:
缺少了一个结束的标签。
对应的时app module下Androidmanifest.xml修改完成即可
注意:
AAPT2 error: check logs for details 这个报错一般就是资源文件或者xml的文件格式有错误。
3 参考
https://blog.csdn.net/u014453811/article/details/54582426?utm_source=distribute.pc_relevant.none-task
作者:haonpu