【发布时间】:2014-12-23 21:31:27
【问题描述】:
我正在尝试在我的一个项目中使用 Material Design。但是我对 appcompat-v7:21.0.0 库的体验非常糟糕。在 Android Studio 中添加依赖项并开始同步后,我会收到以下错误。
Error: No resource found that matches the given name: attr 'android:actionModeShareDrawable'.
No resource found that matches the given name: attr 'android:overlapAnchor'.
但我确信我正在使用最新的构建工具针对最新的 SDK 21 进行编译。这是我的构建配置。
android {
compileSdkVersion 21
buildToolsVersion '21.0.1'
defaultConfig {
minSdkVersion 15
targetSdkVersion 21
versionCode 3
versionName "0.0.003"
}
buildTypes {
release {
runProguard false
proguardFiles getDefaultProguardFile('proguard-android.txt'), 'proguard-rules.pro'
}
}
}
我在这里做错了什么?它对其他人有用吗? 这是我的其他依赖项仅供参考。有经历过这一步的,请指导一下。
dependencies {
compile fileTree(dir: 'libs', include: ['*.jar'])
compile files('libs/smartconfiglib.jar')
compile 'com.android.support:support-v4:21.0.0'
compile 'com.crashlytics.android:crashlytics:1.1.13'
compile 'com.google.android.gms:play-services:6.1.11'
compile 'com.jakewharton.hugo:hugo-runtime:1.1.0'
compile 'com.squareup.retrofit:retrofit:1.7.1'
compile 'com.android.support:appcompat-v7:21.0.0'
compile 'com.android.support:cardview-v7:21.0.0'
compile 'com.jakewharton:butterknife:5.1.2'
compile 'de.greenrobot:eventbus:2.2.1'
compile 'fr.avianey:facebook-android-api:+@aar'
compile('de.keyboardsurfer.android.widget:crouton:1.8.4@aar') {
exclude group: 'com.google.android', module: 'support-v4'
}
apt 'com.turbomanage.storm:storm-impl:0.99'
compile 'com.turbomanage.storm:storm-api:0.99'
compile 'com.squareup.picasso:picasso:2.3.4'
compile 'com.astuetz:pagerslidingtabstrip:1.0.1'
compile 'com.apptentive:apptentive-android:1.6.+@aar'
compile 'com.github.flavienlaurent.datetimepicker:library:0.0.2'
}
【问题讨论】:
-
@shayanpourvatan 该解决方案不起作用。我的问题是我已经在使用最新的构建工具(21.0.1)、SDK 平台(21)。还是不行。
-
@reVerse 它不是重复的。我已经在遵循该答案中给出的解决方案,但问题似乎是别的。这就是为什么我发布了一个单独的问题
-
对不起,我好像误判了这个。只是一个想法:您是否尝试在另一个项目中使用
appcompat-v7? (只是为了确定是一般问题还是模块相关问题)
标签: android android-appcompat material-design