web-dev-qa-db-ja.com

指定された名前に一致するリソースが見つかりません(値が「?android:attr / colorBackgroundFloating」の「cardBackgroundColor」で)

コンパイルしようとすると、次の2つのエラーメッセージが表示されます。

/Users/dericw/coding/myApplication/lfdate/Android/app/build/intermediates/exploded-aar/com.Android.support/cardview-v7/23.2.1/res/values-v23/values-v23.xml
Error:(3, 5) No resource found that matches the given name (at 'cardBackgroundColor' with value '?android:attr/colorBackgroundFloating').
Error:Execution failed for task ':app:processDebugResources'.
> com.Android.ide.common.process.ProcessException: org.gradle.process.internal.ExecException: Process 'command '/Users/dericw/Library/Android/sdk/build-tools/23.0.2/aapt'' finished with non-zero exit value 1

その後、Android Studioが開きますv23/values-23.xmlこのスタイルの場合:

    <style name="CardView" parent="Base.CardView">
        <item name="cardBackgroundColor">?android:attr/colorBackgroundFloating</item>
    </style>

しかし、アプリのどこにも定義されていません。エラーを生成しているのは生成されたファイルです。この問題を修正する方法にかなり困惑していますか?誰もがこれに遭遇したことがありますか?どうすれば修正できますか?

プロジェクトビルドファイル

buildscript {
    repositories {
        jcenter()
    }
    dependencies {
        classpath 'com.Android.tools.build:gradle:1.5.0'
        classpath 'com.google.gms:google-services:2.0.0-alpha6'
    }
}

allprojects {
    repositories {
        jcenter()
    }
}

アプリビルドファイル

buildscript {
    repositories {
        mavenCentral()
        maven {
            url 'https://maven.fabric.io/public'
        }
    }

    dependencies {
        classpath 'io.fabric.tools:gradle:1.+'
    }
}

apply plugin: 'com.Android.application'
apply plugin: 'io.fabric'

Android {
    compileSdkVersion 22
    buildToolsVersion '23.0.2'

    defaultConfig {
        applicationId "com.something.myapp"
        minSdkVersion 16
        targetSdkVersion 22
        versionCode 200
        versionName "1.7.1"
    }

    buildTypes {
        debug {
            versionNameSuffix '-debug'
        }
        release {
            minifyEnabled false
            proguardFiles getDefaultProguardFile('proguard-Android.txt'), 'proguard-rules.pro'
            signingConfig signingConfigs.release
            zipAlignEnabled true
        }
    }

    packagingOptions {
        exclude 'META-INF/DEPENDENCIES'
        exclude 'META-INF/NOTICE'
        exclude 'META-INF/LICENSE'
        exclude 'META-INF/LICENSE.txt'
        exclude 'META-INF/NOTICE.txt'
    }

    sourceSets {
        androidTest.setRoot('src/test')
    }
}

repositories {
    mavenCentral()
    maven {
        url 'https://oss.sonatype.org/content/repositories/snapshots/'
    }
    maven {
        url 'https://maven.fabric.io/public'
    }
}

dependencies {
    compile fileTree(include: ['*.jar'], dir: 'libs')
    compile('com.crashlytics.sdk.Android:crashlytics:2.4.0@aar') {
        transitive = true;
    }
    compile('org.Apache.httpcomponents:httpmime:4.3.6') {
        exclude module: 'httpclient'
    }
    compile project(':viewPagerIndicator')
    compile 'com.Android.support:appcompat-v7:22.2.1'
    compile 'com.Android.support:cardview-v7:22.2.1'
    compile 'com.Android.support:recyclerview-v7:22.2.1'
    compile 'com.Android.support:design:22.2.1'
    compile 'com.facebook.Android:facebook-Android-sdk:4.+'
    compile 'com.mcxiaoke.volley:library:1.+'
    compile 'com.parse.bolts:bolts-Android:1.+'
    compile 'com.parse:parse-Android:1.+'
    compile 'com.google.Android.gms:play-services-gcm:8.3.0'
    compile 'com.google.Android.gms:play-services-analytics:8.3.0'
    compile 'joda-time:joda-time:2.+'
    compile 'com.koushikdutta.async:androidasync:2.+'
    compile 'com.edmodo:rangebar:1.+'
    compile 'org.lucasr.twowayview:twowayview:0.+'
    compile 'com.github.amlcurran.showcaseview:library:5.4.+'
    compile 'com.nostra13.universalimageloader:universal-image-loader:1.+'
    compile 'com.getbase:floatingactionbutton:1.+'
    compile 'com.mixpanel.Android:mixpanel-Android:4.+'
    compile 'org.Apache.httpcomponents:httpclient-Android:4.3.5'
    compile 'com.wefika:flowlayout:0.+'
    compile 'com.hudomju:swipe-to-dismiss-undo:1.+'
    compile 'com.soundcloud.Android:android-crop:1.0.1@aar'
    compile 'com.squareup.picasso:picasso:2.+'
}

apply plugin: 'com.google.gms.google-services'
26
The Nomad

'com.facebook.Android:facebook-Android-sdk:4.+'をコンパイルするにはV-23が必要です

FacebookバージョンSDKを4.8.0に変更すると、そのリソースファイルは使用されません。その後、コードが起動して実行されます/

53
Jatin Jha

私もこの問題を抱えていました。問題があるので、カードビューライブラリの古いバージョンを強制することで解決しました。

compile('com.Android.support:cardview-v7:23.2.0') {
    force = true
}

問題は23.2.1のカードビューにあり、Facebook SDKはこのライブラリを使用します。

32
sfreeman

「cordova-plugin-facebook4」プラグインを使用している場合は、プロジェクトからプラグインを削除し、再度(最新バージョン)プルしてから、プロジェクトに追加してください。

同時に、行番号64のyourCordovaProject/plugin/cordova-plugin-facebook4/plugin.xmlにあるxmlファイルを確認してください。4.8.+である必要があります。

<framework src="com.facebook.Android:facebook-Android-sdk:4.8.+"/>

2
infinitysky
  1. 一時修正の場合、project.propertiesを変更して問題を解決しました。

viプラットフォーム/Android/project.properties

target = Android-22からtarget = Android-23に変更されました

  1. 永続的な修正の場合、Androidプラットフォームを更新する必要があります。

cordova platform update Android --save

0
Wils

プラグインを削除して修正しました:

 cordova plugin remove cordova-plugin-facebook4

そして、このコミットから再度インストールします:

cordova plugin add https://github.com/jeduan/cordova-plugin-facebook4\#aff9a08a86cc6c6a18019f7adc2896ddf97c11cd --save --variable APP_ID="YOUR_FB_APP_ID" --variable APP_NAME="YOUR_FB_APP_NAME"

0
Agu Dondo

Phonegap Buildユーザーの場合、これを試してください。それは私のために働いた。

<plugin spec="https://github.com/jeduan/cordova-plugin-facebook4#aff9a08a86cc6c6a18019f7adc2896ddf97c11cd" source="git" >
0
ZoM

私のシステムにはすでに23がインストールされています。プロジェクトパネルから、アプリケーション->モジュール設定を開く(F4)->アプリケーション->プロパティタブ。 Compile Sdk Version Android 5.50(Lollipop)があったので、API 23+に変更して機能しました。アプリケーションbuild.gradleの変更を確認しました
compileSdkVersion 21から
buildToolsVersion "23.0.3"

compileSdkVersion 'Android-N'
buildToolsVersion "23.0.3"

そのため、compoileSdkVersionをbuildTollVersionに簡単に変更できると思います。

0
user3865096