2017-05-13 44 views
-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' 

} 
+0

很肯定的播放服務<8早已不復存在。 –

+0

如果您使用'targetSdkVersion 25'或'compileSdkVersion 25',那麼您還應該使用推薦的'buildToolsVersion'可用於API級別25 –

回答

2

嘗試使用最新版本的PlayServices庫您正在使用非常非常老的版本,這是65年2月3日使用10.2.4。像下面一樣

compile 'com.google.android.gms:play-services:10.2.4' 
+0

thx您我要嘗試更新它 –