Próbuję użyć Material Design w jednym z moich projektów. Ale mam bardzo złe doświadczenia z biblioteką appcompat-v7: 21.0.0. Zaraz po dodaniu zależności i rozpoczęciu synchronizacji w Android Studio pojawia się następujący błąd.Nie znaleziono zasobu pasującego do podanej nazwy: attr 'android: actionModeShareDrawable' appcompat-v7: 21.0.0 z kompilacjąSdkVersion 21
Error: No resource found that matches the given name: attr 'android:actionModeShareDrawable'.
No resource found that matches the given name: attr 'android:overlapAnchor'.
Ale jestem pewien, że kompiluję się z najnowszym SDK 21 z najnowszymi narzędziami do kompilacji. Oto moja konfiguracja kompilacji.
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'
}
}
}
Co to za błąd, który tu robię? Czy to działa dla wszystkich? Oto moje inne zależności od FYI. Ktoś, kto przeszedł ten krok, proszę mnie poprowadzić.
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:[email protected]'
compile('de.keyboardsurfer.android.widget:crouton:[email protected]') {
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:[email protected]'
compile 'com.github.flavienlaurent.datetimepicker:library:0.0.2'
}
czy widziałeś http://stackoverflow.com/questions/26457096/appcompat-v7-r21-returning-error-in-values-xml? –
możliwy duplikat [appcompat-v7: 21.0.0 ': Nie znaleziono zasobu pasującego do podanej nazwy: attr' android: actionModeShareDrawable '] (http://stackoverflow.com/questions/26431676/appcompat-v721-0-0 -no-resource-found-that-matches-the-given-name-attr-andro) – reVerse
@shayanpourvatan Rozwiązanie nie działa. Mój problem polega na tym, że używam już najnowszych narzędzi do kompilacji (21.0.1), platformy SDK (21). Nadal to nie działa. – Gopinath