2017-09-25 243 views
0

錯誤:無法解析:com.google.android.gms:發揮服務地下室:[11.0.4]錯誤:無法解析:com.google.android.gms

錯誤:無法解析:com.google.android.gms:發揮服務任務:[11.0.4]

enter image description here

enter image description here

enter image description here

當我使用android studio 2.3.2版本時,我的項目構建成功,但更新到android工作室版本到2.3.3和更新谷歌播放服務我得到這個錯誤,請幫助。

還有就是我的文件夾中沒有發揮服務地下室和玩遊戲服務的任務文件夾

當我評論這個「編譯「com.google.android.gms:發揮服務定位:11.0。 4' 」行我的項目編制的罰款,如果再我取消我的項目未編制

項目搖籃文件:

buildscript { 
    repositories { 
     jcenter() 
    } 

    dependencies { 
     classpath 'com.android.tools.build:gradle:2.3.3' 
    } 
} 

allprojects { 
    buildDir = "C:/tmp/${rootProject.name}/${project.name}" 
    repositories { 
     jcenter() 
    } 
} 

ext { 

    compileSdkVersion = 25 
    buildToolsVersion = "25.0.2" 
    supportLibVersion = "25.3.1" 
    minSdkVersion = 14 
    targetSdkVersion = 25 
} 

task clean(type: Delete) { 
    delete rootProject.buildDir 
} 

模塊搖籃文件:

apply plugin: 'com.android.application' 

android { 

    compileSdkVersion rootProject.ext.compileSdkVersion 
    buildToolsVersion rootProject.ext.buildToolsVersion 

    useLibrary 'org.apache.http.legacy' 

    defaultConfig { 
     applicationId "package" 
     minSdkVersion rootProject.ext.minSdkVersion 
     targetSdkVersion rootProject.ext.targetSdkVersion 

     compileOptions { 
      sourceCompatibility JavaVersion.VERSION_1_7 
      targetCompatibility JavaVersion.VERSION_1_7 
     } 
    } 
    buildTypes { 
     release { 
      minifyEnabled false 
      proguardFiles getDefaultProguardFile('proguard-android.txt'), 'proguard-rules.txt' 
     } 
     debug { 
      debuggable true 
     } 
    } 
    lintOptions { 
     checkReleaseBuilds false 
     abortOnError false 
    } 

} 


repositories { 
    jcenter { 
     url "http://jcenter.bintray.com/" 
    } 
} 

dependencies { 
    compile fileTree(include: ['*.jar'], dir: 'libs') 

    compile "com.android.support:appcompat-v7:${rootProject.ext.supportLibVersion}" 
    compile "com.android.support:support-v4:${rootProject.ext.supportLibVersion}" 
    compile "com.android.support:design:${rootProject.ext.supportLibVersion}" 
    compile "com.android.support:recyclerview-v7:${rootProject.ext.supportLibVersion}" 
    compile 'com.google.android.gms:play-services-location:11.0.4' 

    compile 'com.github.bumptech.glide:glide:3.7.0' 
    compile 'de.hdodenhof:circleimageview:2.1.0' 
    compile 'com.github.beyka:androidtiffbitmapfactory:0.9.6.2' 

    debugCompile 'com.squareup.leakcanary:leakcanary-android-no-op:1.5' 
    releaseCompile 'com.squareup.leakcanary:leakcanary-android-no-op:1.5' 

} 

enter image description here

+1

「安裝庫和同步工程」的嘗試,也許 –

+0

我點擊安裝,但沒有happended – Lingeshwaran

+1

去SDK管理器和手動安裝 –

回答

1

項目gradle這個文件:

buildscript { 
    repositories { 
     jcenter() 
     maven { 
     url 'https://maven.google.com'  
     } 
    } 

    dependencies { 
     classpath 'com.android.tools.build:gradle:2.3.3' 
    } 
} 

allprojects { 
    buildDir = "C:/tmp/${rootProject.name}/${project.name}" 
    repositories { 
     jcenter() 
     maven { 
      url 'https://maven.google.com'  
     } 
    } 
}