1
我試圖在Android工作室0.8.1(測試版),並每一件事情從eclipso導入項目那張程序兼容性-V7 ATTR正確的,但同樣的錯誤。我有以下的gradle產出:程序兼容性-V7依賴返回錯誤
apply plugin: 'com.android.application'
android {
compileSdkVersion 19
buildToolsVersion '19.1.0'
defaultConfig {
applicationId "package"
minSdkVersion 10
targetSdkVersion 19
versionCode 1
versionName "1.0"
}
buildTypes {
release {
runProguard false
proguardFiles getDefaultProguardFile('proguard-android.txt'), 'proguard-rules.pro'
}
}
}
dependencies {
compile project(":facebook")
compile project(":socketConnetion")
compile fileTree(dir: 'libs', include: ['*.jar'])
compile 'com.android.support:appcompat-v7:19.0.+'
compile 'com.android.support:support-v4:20.+'
compile 'com.google.android.gms:play-services:+'
}
當我在同步的gradle我不斷收到錯誤:
/Users/tiag`omissiato/AndroidstudioProjects/Get/build/intermediates/exploded-aar/com.android.support/appcompat-v7/19.0.1/res/values/values.xml
Error:(432, 21) No resource found that matches the given name: attr 'dropdownListPreferredItemHeight'.
Error:(434, 21) No resource found that matches the given name: attr 'popupMenuStyle'.
Error:(432, 21) No resource found that matches the given name: attr 'dropdownListPreferredItemHeight'.
Error:(434, 21) No resource found that matches the given name: attr 'popupMenuStyle'.
Error:(432, 21) No resource found that matches the given name: attr 'dropdownListPreferredItemHeight'.
[...]
任何幫助?
我也要同樣的問題,同樣的庫。謝謝! –