0
錯誤:配置項目':app'時發生問題。Android studio構建失敗 - 找不到支持-v4.jar
Could not find support-v4.jar (com.android.support:support-v4:24.0.0). Searched in the following locations: https://jcenter.bintray.com/com/android/support/support-v4/24.0.0/support-v4-24.0.0.jar
,但我沒有使用24.0.0版本 檢查gradle這個:
apply plugin: 'com.android.application'
android {
compileSdkVersion 14
buildToolsVersion '19.1.0'
defaultConfig {
applicationId "com.XXX.app"
minSdkVersion 14
targetSdkVersion 19
versionCode 2
versionName "2.0"
multiDexEnabled true
}
buildTypes {
release {
minifyEnabled false
proguardFiles getDefaultProguardFile('proguard-android.txt'),
'proguard-rules.txt'
}
} }
dependencies {
provided fileTree(dir: 'libs', include: ['*.jar'])
compile 'com.google.android.gms:play-services:+'
compile 'com.actionbarsherlock:actionbarsherlock:[email protected]'
compile project(':actionbarsherlock')
compile 'com.google.android.gms:play-services-ads:8.4.0'
compile 'com.android.support:support-v4:23+' }
** compile'com.android.support:support-v4:23+'** Gradle會自動尋找23以上版本的支持庫。或者使用像23.0.2這樣的fullversion名稱(只是一個例子)來包含特定的支持庫版本 –
**編譯'com.android.support:support-v4:24.2.1'**試試這個 –
匹配構建工具和支持Lib版本。 –