我正在尝试使用gradle的assembleDebug命令构建一个APK,但是我目前遇到此错误:
`java.util.concurrent.ExecutionException: com.android.builder.internal.aapt.v2.Aapt2Exception: Android resource compilation failed`
具有以下输出:
* What went wrong: Execution failed for task ':app:mergeDebugResources'.
> java.util.concurrent.ExecutionException: com.android.builder.internal.aapt.v2.Aapt2Exception: Android resource compilation failed Output: C:\Windows\System32\config\systemprofile\.gradle\caches\transforms-1\files-1.1\core-0.9.6.0.aar\18f1091c245c93f2961ec83a1230d434\res\anim\popup_exit.xml: error: file not found.
Command: C:\Windows\System32\config\systemprofile\.gradle\caches\transforms-1\files-1.1\aapt2-3.2.1-4818971-windows.jar\e73f7e9c03a39a7518e973bff44c7fef\aapt2-3.2.1-4818971-windows\aapt2.exe compile --legacy \
-o \
C:\Program Files (x86)\Jenkins\workspace\HIRI App Android\app\build\intermediates\res\merged\debug \
C:\Windows\System32\config\systemprofile\.gradle\caches\transforms-1\files-1.1\core-0.9.6.0.aar\18f1091c245c93f2961ec83a1230d434\res\anim\popup_exit.xml Daemon: AAPT2 aapt2-3.2.1-4818971-windows Daemon #0
我的build.gradle文件如下:
buildscript { ext.kotlin_version = '1.2.71' repositories { google() jcenter() } dependencies { classpath 'com.android.tools.build:gradle:3.2.1' classpath 'com.google.gms:google-services:4.2.0' classpath 'com.github.dcendents:android-maven-gradle-plugin:2.0' classpath 'com.jfrog.bintray.gradle:gradle-bintray-plugin:1.8.0' // NOTE: Do not place your application dependencies here; they belong // in the individual module build.gradle files } } allprojects { repositories { google() jcenter() maven { url 'https://maven.google.com' } maven { url 'https://jitpack.io' } }
我正在使用的gradle版本是4.9
另外两个项目也面临着同样的问题。
答案 0 :(得分:1)
这是由于添加了drawable
的图像,其扩展名为(.jpg
),并且您已将其更改或保存为.png
格式(此错误会在无需使用编辑器工具即可手动更改图像格式。
在使用AAPT(Android资产打包工具)编译资源包时,Android Studio会引发错误,因此您所要做的就是使用一些图像编辑器工具。
一切完成后,重新构建您的项目。