web-dev-qa-db-ja.com

Androidリソースのコンパイルに失敗しました

デザインサポートライブラリが必要なAndroidアプリを開発しているので、build.gradle(app)にimplementation 'com.Android.support:design:27.1.1'を追加すると、次のエラーが表示されます。

原因:org.gradle.internal.UncheckedException:Java.util.concurrent.ExecutionException:com.Android.builder.internal.aapt.v2.Aapt2Exception:Androidリソースのコンパイルに失敗しましたMyAppDirectory\app\build\intermediates\incremental\mergeDebugResources\merged.dir\values\values.xml:2489:エラー:構成 ''でリソース 'attr/itemBackground'の値が重複しています。

しかし、依存関係implementation 'com.Android.support:design:27.1.1'を削除すると、エラーが消え、gradleが正常にビルドされます。

私のプロジェクトbuild.gradle

// Top-level build file where you can add configuration options common to all sub-projects/modules.

buildscript {

repositories {
    google()
    jcenter()
}
dependencies {
  //        classpath 'com.Android.tools.build:gradle:3.1.3'
    classpath 'com.Android.tools.build:gradle:3.3.0-alpha04'


    // NOTE: Do not place your application dependencies here; they belong
    // in the individual module build.gradle files
     }
 }

allprojects {
repositories {
    google()
    jcenter()


   }
}

task clean(type: Delete) {
delete rootProject.buildDir
}

私のアプリbuild.gradle

apply plugin: 'com.Android.application'

Android {
compileSdkVersion 27
buildToolsVersion "27.0.3"
defaultConfig {
    applicationId "myapplicationid"
    minSdkVersion 16
    targetSdkVersion 27
    versionCode 1
    versionName "1.0"
    testInstrumentationRunner "Android.support.test.runner.AndroidJUnitRunner"

}

buildTypes {
    release {
        minifyEnabled false
        proguardFiles getDefaultProguardFile('proguard-Android.txt'), 'proguard-rules.pro'
      }
   }
}

dependencies {
implementation fileTree(dir: 'libs', include: ['*.jar'])
implementation 'com.Android.support:appcompat-v7:27.1.1'

implementation 'com.Android.support.constraint:constraint-layout:1.1.2'
implementation 'com.Android.support:support-v4:27.1.1'
implementation 'com.Android.support:design:27.1.1'
testImplementation 'junit:junit:4.12'
androidTestImplementation 'com.Android.support.test:runner:1.0.2'
androidTestImplementation 'com.Android.support.test.espresso:espresso-core:3.0.2'

//third party libraries
implementation 'com.hbb20:ccp:2.2.2'

implementation 'info.hoang8f:fbutton:1.0.5'
implementation 'com.chaos.view:pinview:1.4.0'
implementation 'de.hdodenhof:circleimageview:2.2.0'
}

注:プロジェクトを既にクリーンアップして再構築し、キャッシュも無効にしてクリアしました

3
mdadil2019

私の場合、エラーを生成したビューの場合、xml名前空間の定義が多すぎたため、エラーが発生しました。つまり、_xmlns:Android="http://schemas.Android.com/apk/res/Android"_

_<androidx.swiperefreshlayout.widget.SwipeRefreshLayout
        xmlns:Android="http://schemas.Android.com/apk/res/Android"
        Android:id="@+id/sb_swipe_container"
        Android:layout_width="match_parent"
        Android:layout_height="match_parent">
_

Android Studioがビルド中の場合、エラーが表示されます:

_Android resource compilation failed
C:\dev\hyperoptic.infinity\mobile-fit\app\build\intermediates\incremental\mergeDebugResources\stripped.dir\layout\activity_spine_build_job_report.xml:29: error: duplicate attribute.
C:\dev\hyperoptic.infinity\mobile-fit\app\build\intermediates\incremental\mergeDebugResources\stripped.dir\layout\activity_spine_build_job_report.xml: error: file failed to compile.
_

これは、コンパイルされたxmlの場合と同様に、xmlnsを削除する必要があることを意味します。

したがって、_xmlns:Android="http://schemas.Android.com/apk/res/Android"_を削除すると、この問題は解決しました。

0
dobrivoje