找不到与给定名称匹配的资源(在 'cardBackgroundColor' 处,值为 '?android:attr/colorBackgroundFloating')
No resource found that matches the given name (at 'cardBackgroundColor' with value '?android:attr/colorBackgroundFloating')
我在尝试编译时收到这两条错误消息:
/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'
编译'com.facebook.android:facebook-android-sdk:4.+'需要V-23
将facebook 版本的SDK 更改为4.8.0 然后它不会使用该资源文件。然后你的代码将是 & 运行/
我也有这个问题。我通过强制使用旧版本的卡片视图库解决了这个问题。
compile('com.android.support:cardview-v7:23.2.0') {
force = true
}
问题出在卡片视图的 23.2.1 上,Facebook SDK 使用此库。
- 对于 临时修复 我解决了我的问题更改 project.properties:
vi platforms/android/project.properties
and changed from target=android-22 to target=android-23
- 对于永久修复,您只需更新android平台:
cordova platform update android --save
如果您正在使用 "cordova-plugin-facebook4" 插件,请从您的项目中删除插件并重新拉取它(最新版本),然后将其添加回您的项目。
同时请查看xml文件,位于第64行附近yourCordovaProject/plugin/cordova-plugin-facebook4/plugin.xml
处,必须是4.8.+
:
<framework src="com.facebook.android:facebook-android-sdk:4.8.+"/>
对于 Phonegap Build 用户,试试这个。它对我有用。
<plugin spec="https://github.com/jeduan/cordova-plugin-facebook4#aff9a08a86cc6c6a18019f7adc2896ddf97c11cd" source="git" >
我的系统已经安装了 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。
我已经修复了删除插件的问题:
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"
我在尝试编译时收到这两条错误消息:
/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'
编译'com.facebook.android:facebook-android-sdk:4.+'需要V-23
将facebook 版本的SDK 更改为4.8.0 然后它不会使用该资源文件。然后你的代码将是 & 运行/
我也有这个问题。我通过强制使用旧版本的卡片视图库解决了这个问题。
compile('com.android.support:cardview-v7:23.2.0') {
force = true
}
问题出在卡片视图的 23.2.1 上,Facebook SDK 使用此库。
- 对于 临时修复 我解决了我的问题更改 project.properties:
vi platforms/android/project.properties
and changed from target=android-22 to target=android-23
- 对于永久修复,您只需更新android平台:
cordova platform update android --save
如果您正在使用 "cordova-plugin-facebook4" 插件,请从您的项目中删除插件并重新拉取它(最新版本),然后将其添加回您的项目。
同时请查看xml文件,位于第64行附近yourCordovaProject/plugin/cordova-plugin-facebook4/plugin.xml
处,必须是4.8.+
:
<framework src="com.facebook.android:facebook-android-sdk:4.8.+"/>
对于 Phonegap Build 用户,试试这个。它对我有用。
<plugin spec="https://github.com/jeduan/cordova-plugin-facebook4#aff9a08a86cc6c6a18019f7adc2896ddf97c11cd" source="git" >
我的系统已经安装了 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。
我已经修复了删除插件的问题:
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"