-1
有人可以幫我解決這個問題 這是我在Android Studio中編寫的應用程序,每次我嘗試編譯時,都會給出這個錯誤:錯誤: --- com.android.support:support-compat:25.3.1「
"Error:\--- com.android.support:support-compat:25.3.1"
這裏是我的代碼
apply plugin: 'com.android.application'
android {
compileSdkVersion 25
buildToolsVersion "23.0.3"
defaultConfig {
applicationId "com.googlemap.luco.lucomap"
minSdkVersion 23
targetSdkVersion 25
versionCode 1
versionName "1.0"
}
buildTypes {
release {
minifyEnabled false
proguardFiles getDefaultProguardFile('proguard-android.txt'), 'proguard-rules.pro'
}
}
}
dependencies {
compile fileTree(dir: 'libs', include: ['*.jar'])
testCompile 'junit:junit:4.12'
compile 'com.google.android.gms:play-services:3.2.65'
compile 'com.android.support:appcompat-v7:25.3.1'
}
很肯定的播放服務<8早已不復存在。 –
如果您使用'targetSdkVersion 25'或'compileSdkVersion 25',那麼您還應該使用推薦的'buildToolsVersion'可用於API級別25 –