当前位置: 首页 > 知识库问答 >
问题:

错误:任务“:app:processDebugResources”的执行失败

薛彭薄
2023-03-14

当我尝试构建项目时,Gradle build消息会报告以下消息:

失败:构建失败,但有一个异常。

>

Gradle文件

android {
compileSdkVersion 25
buildToolsVersion '25.0.2'
defaultConfig {
    applicationId "com.example.bolt.skola"
    minSdkVersion 17
    targetSdkVersion 25
    versionCode 1
    versionName "1.0"
    testInstrumentationRunner "android.support.test.runner.AndroidJUnitRunner"
}
buildTypes {
    release {
        minifyEnabled false
        proguardFiles getDefaultProguardFile('proguard-android.txt'), 'proguard-rules.pro'
    }
}


}

dependencies {
compile fileTree(dir: 'libs', include: ['*.jar'])
androidTestCompile('com.android.support.test.espresso:espresso-core:2.2.2', {
    exclude group: 'com.android.support', module: 'support-annotations'
})

compile 'com.android.support:appcompat-v7:25.2.0'
compile 'com.android.support:design:25.2.0'
compile 'com.android.support:support-v4:25.2.0'
compile 'com.roughike:bottom-bar:1.3.9'


compile 'com.google.android.gms:play-services-identity:10.2.0'
compile 'com.google.android.gms:play-services-plus:10.2.0'
compile 'com.google.android.gms:play-services-gcm:10.2.0'



testCompile 'junit:junit:4.12'
}

共有3个答案

柴昆杰
2023-03-14

我编辑了我的包名来解决这个问题。

魏凯捷
2023-03-14

转到清单文件并检查包名称-

package=“com.shaon.rastarchele.leet.subcase”

例如,请参见图像附加

鲁明知
2023-03-14

很可能XML中有一个没有正确ID的项

<Button android:id="@+id/"/>

编译器很难检测到原因。

 类似资料: