这是我的build.gradle
apply plugin: 'com.android.application'
android {
compileSdkVersion 22
buildToolsVersion '22.0.1'
defaultConfig {
applicationId "xxx"
minSdkVersion 18
targetSdkVersion 22
versionCode 1
versionName "1.0"
}
buildTypes {
release {
minifyEnabled false
proguardFiles getDefaultProguardFile('proguard-android.txt'), 'proguard-rules.pro'
}
}
}
dependencies {
compile fileTree(dir: 'libs', include: ['*.jar'])
compile 'com.android.support:appcompat-v7:22.2.1'
compile 'com.squareup.retrofit:retrofit:1.9.0'
compile 'com.android.support:support-v4:22.0.0'
compile 'com.android.support:cardview-v7:22.0.+'
compile 'com.android.support:recyclerview-v7:22.2.1'
compile 'com.android.support:design:22.2.0'
}
添加此库后
compile 'com.android.support:design:22.2.0'
我无法构建应用,因为我有这个错误:
/app/build/intermediates/exploded-aar/com.android.support/appcompat-v7/22.2.1/res/values/values.xml
Error:(2) Attribute "rippleColor" has already been defined
可以使用这个库吗?
谢谢! 路易斯
P.S。我需要(现在)FloatingActionButton(fab)的设计库。
答案 0 :(得分:1)
看起来rippleColor属性被多次使用(Dependencies和你自己的应用程序)。
检查你的xmls中是否有一个名为" rippleColor"的属性。并查看它是否被多次使用。如果是,则将其重命名为其他内容。
如果项目中有attr文件,请删除此行:
<attr name="rippleColor" format="color" />