2016-09-16 110 views
-1

我按照一些說明操作,並且出現此錯誤。將廣告添加到我的Android應用程序失敗

Error:Could not find com.google.gms:google-services:3.0.0. Searched in the following locations: file:/Applications/Android Studio.app/Contents/gradle/m2repository/com/google/gms/google-services/3.0.0/google-services-3.0.0.pom file:/Applications/Android Studio.app/Contents/gradle/m2repository/com/google/gms/google-services/3.0.0/google-services-3.0.0.jar https://maven.fabric.io/public/com/google/gms/google-services/3.0.0/google-services-3.0.0.pom https://maven.fabric.io/public/com/google/gms/google-services/3.0.0/google-services-3.0.0.jar Required by panic_android:app:unspecified

我gradle這個是:

apply plugin: 'com.android.application' 
    apply plugin: 'io.fabric' 
    apply plugin: 'com.google.gms.google-services' 
buildscript { 
repositories { 
    maven { url 'https://maven.fabric.io/public' } 
} 
dependencies { 
    classpath 'com.google.gms:google-services:3.0.0' 
    classpath 'io.fabric.tools:gradle:1.+' 
} 
} 
repositories { 
mavenCentral() 
maven { url 'https://maven.fabric.io/public' } 
} 
android { 
compileSdkVersion 23 
buildToolsVersion "23.0.2" 
defaultConfig { 
    applicationId "com.netvariant.panic" 
    minSdkVersion 15 
    multiDexEnabled true 
    targetSdkVersion 21 
    versionCode 2 
    versionName "1.1" 
} 
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.android.support:appcompat-v7:23.2.0' 
compile 'com.android.support:design:23.2.0' 
compile 'com.google.android.gms:play-services:8.4.0' 
compile('com.twitter.sdk.android:twitter:[email protected]') { 
    transitive = true; 
} 
compile 'com.skyfishjy.ripplebackground:library:1.0.1' 
compile 'com.facebook.android:facebook-android-sdk:4.7.0' 
compile 'com.android.support:multidex:1.0.1' 
} 
+0

你有兩個'repositories'部分。爲什麼?或者是你放在一起的那兩個文件?你似乎缺少'jCenter' –

+0

是的,添加jcenter解決了問題 –

+0

您可以使用下面的答案旁邊的複選標記接受它 –

回答

0

你似乎缺少jCenter()

repositories { 
    jCenter() 
    maven { url 'https://maven.fabric.io/public' } 
} 
相關問題