Android Studio Gradle build error :app:mergeDebugResources, Crunching Cruncher loader.png failed

Android Studio Gradle build error :app:mergeDebugResources, Crunching Cruncher loader.png failed

我正在尝试在我的 Android 应用程序中集成 Google 登录。当我包含 Google 服务依赖项时,我在构建 apk 时遇到了问题。下面是我的 gradle 文件和错误日志。 google 服务库也提示我使用 gradle-wrapper 2.10 而不是 2.8

项目级别GRADLE文件:

// Top-level build file where you can add configuration options common to all sub-projects/modules.
buildscript {
    repositories {
        jcenter()
    }
    dependencies {
        classpath 'com.android.tools.build:gradle:1.3.0'
        classpath 'com.google.gms:google-services:2.0.0-alpha5'
    }
}

allprojects {
    repositories {
        jcenter()
        mavenCentral()
    }
}

应用级别GRADLE文件:

apply plugin: 'com.android.application'
apply plugin: 'com.google.gms.google-services'

android {
    compileSdkVersion 23
    buildToolsVersion "23.0.2"

    defaultConfig {
        applicationId "com.jaldirecharge"
        minSdkVersion 9
        targetSdkVersion 23
    }

    buildTypes {
        release {
            minifyEnabled true
            proguardFiles getDefaultProguardFile('proguard-android.txt'), 'proguard-project.txt'
        }
    }

    useLibrary 'org.apache.http.legacy'
}

dependencies {
    compile 'com.android.support:appcompat-v7:23.1.1'
    compile 'com.android.support:support-v4:23.1.1'
    compile 'com.android.support:design:23.1.1'
    compile 'com.mcxiaoke.volley:library:1.0.6'
    compile 'com.google.code.gson:gson:2.4'
    compile 'com.google.android.gms:play-services-auth:8.3.0'
    compile files('libs/gcm.jar')
    compile files('libs/libGoogleAnalyticsServices.jar')
    compile files('libs/socialauth-4.3.jar')
    compile 'com.facebook.android:facebook-android-sdk:4.9.0'
    compile files('libs/socialauth-android-3.0.jar')
    compile files('libs/universal-image-loader-1.8.3.jar')
}

错误日志:

Information:Gradle tasks [:app:assembleDebug]
:app:preBuild UP-TO-DATE
:app:preDebugBuild UP-TO-DATE
:app:checkDebugManifest
:app:preReleaseBuild UP-TO-DATE
:app:prepareComAndroidSupportAppcompatV72311Library UP-TO-DATE
:app:prepareComAndroidSupportCardviewV72311Library UP-TO-DATE
:app:prepareComAndroidSupportDesign2311Library UP-TO-DATE
:app:prepareComAndroidSupportMultidex101Library UP-TO-DATE
:app:prepareComAndroidSupportRecyclerviewV72311Library UP-TO-DATE
:app:prepareComAndroidSupportSupportV42311Library UP-TO-DATE
:app:prepareComFacebookAndroidFacebookAndroidSdk490Library UP-TO-DATE
:app:prepareComGoogleAndroidGmsPlayServicesAuth830Library UP-TO-DATE
:app:prepareComGoogleAndroidGmsPlayServicesBase830Library UP-TO-DATE
:app:prepareComGoogleAndroidGmsPlayServicesBasement830Library UP-TO-DATE
:app:prepareComGoogleAndroidGmsPlayServicesMeasurement830Library UP-TO-DATE
:app:prepareDebugDependencies
:app:compileDebugAidl UP-TO-DATE
:app:compileDebugRenderscript UP-TO-DATE
:app:generateDebugBuildConfig UP-TO-DATE
:app:generateDebugAssets UP-TO-DATE
:app:mergeDebugAssets UP-TO-DATE
:app:generateDebugResValues UP-TO-DATE
:app:processDebugGoogleServices
:app:generateDebugResources
:app:mergeDebugResources

AAPT 错误(Facade for 1282826090):未设置委托:丢失 message:libpng 错误:不是 PNG 文件 AAPT err(Facade for 1543523483):未设置委托:丢失 message:libpng 错误:不是 PNG 文件 AAPT:libpng 错误:不是 PNG 文件 AAPT:libpng 错误:不是 PNG 文件 :app:mergeDebugResources 失败 Error:Execution 任务“:app:mergeDebugResources”失败。

Crunching Cruncher loader.png failed, see logs Information:BUILD FAILED Information:Total time: 9.017 secs Information:1 error Information:0 warnings Information:See complete output in console

资源文件夹中的 png 文件存在一些问题。 您如何以及从何处获得 PNG 文件? 它可能已损坏。

在有问题的 png 上尝试以下操作:

在编辑器中打开它,将其另存为 png。无需重命名文件名。 将 .png 图像复制并粘贴到可绘制文件夹中。

Shahar 给出了正确的答案,我想补充的一点是-

我的项目中有一百多张图片,检查每张图片是不可能的,所以我所做的是使用一个工具将所有图片一次转换为 PNG。我是 MAC 用户,所以我使用了 Preview App。我发现其中一张图片保存为 PNG 而不是 png 文件。

您可以在 build.gradle:

中禁用它
android { 
    ....
    aaptOptions {
        cruncherEnabled = false
    }
    ....
}

干脆移动项目文件夹,因为它的名字太长了,用android studio

重新打开

将项目文件夹移动到我的工作区并再次打开它对我有用。