2016-04-01 3 views
0

Es ist sehr einfach und das Problem könntecom.google.gms.google-Dienste nicht das Hinzufügen Klasse GoogleSignInOptions

ich verwenden möchte GoogleSignInOptions, GoogleSignInResult und Auth zu implementieren google + signin fundimental sein.

i folgende bin der Führer hier sind die gradle baut:

Projekt Baujahr:

// Top-level build file where you can add configuration options common to all sub-projects/modules. 
buildscript { 
    repositories { 
     jcenter() 
     mavenCentral() 
    } 
    dependencies { 
     classpath 'com.android.tools.build:gradle:1.3.0' 
     classpath 'com.google.gms:google-services:1.3.0-beta1' 
    } 
} 

allprojects { 
    repositories { 
     jcenter() 
     maven { url "http://jzaccone.github.io/SlidingMenu-aar" } 
    } 
} 

App Baujahr:

apply plugin: 'com.android.application' 

android { 
    compileSdkVersion 23 
    buildToolsVersion "23.0.1" 


    defaultConfig { 
     applicationId "com.ili.BDigital" 
     minSdkVersion 14 
     targetSdkVersion 23 
    } 

    buildTypes { 
     release { 
      minifyEnabled false 
      proguardFiles getDefaultProguardFile('proguard-android.txt'), 'proguard-rules.txt' 
     } 
    } 
} 

dependencies { 
    compile project(':eventBrowser') 
} 

Bibliothek (Zusatzmodul) Baujahr:

apply plugin: 'com.android.library' 
apply plugin: 'com.google.gms.google-services' 

android { 
    compileSdkVersion 23 
    buildToolsVersion "23.0.1" 

    defaultConfig { 
     minSdkVersion 14 
     targetSdkVersion 23 
    } 

    buildTypes { 
     release { 
      minifyEnabled false 
      proguardFiles getDefaultProguardFile('proguard-android.txt'), 'proguard-rules.txt' 
     } 
    } 
} 

dependencies { 
    compile 'com.google.android.gms:play-services:8.4.0' 
    compile 'com.squareup.okhttp3:okhttp:3.1.2' 
    compile 'com.android.support:support-v4:23.1.1' 
    compile 'com.android.support:appcompat-v7:23.1.1' 
    compile 'com.android.support:design:23.1.1' 
    compile 'com.google.code.gson:gson:2.3' 
    compile 'com.etsy.android.grid:library:1.0.5' 
    compile 'com.jeremyfeinstein.slidingmenu:library:[email protected]' 
    compile 'com.jakewharton:butterknife:4.0.1' 
    compile 'com.pubnub:pubnub:3.7.5' 
    compile 'com.nineoldandroids:library:2.4.0' 
    compile 'com.wefika:horizontal-picker:1.1.0' 
    compile 'com.facebook.android:facebook-android-sdk:4.5.0' 



    compile files('libs/com.haarman.listviewanimations-2.5.2.jar') 
    compile files('libs/google-play-services.jar') 
    compile files('libs/htmlcleaner-2.8.jar') 
    compile files('libs/socialauth-4.9.jar') 
    compile files('libs/socialauth-android-3.2.jar') 

} 





/* 
compile 'com.pubnub:pubnub-android-debug:3.7.+' 
compile 'javax.inject:javax.inject:[email protected]' 
compile 'com.squareup.dagger:dagger-compiler:1.1.0' 
compile 'com.jakewharton:butterknife:4.0.1' 
compile 'com.squareup.dagger:dagger:1.1.0' 
compile 'com.github.pedrovgs:renderers:1.0.9' 
compile 'com.google.gms:google-services:2.0.0-rc1' 

*/ 

Ich habe auf diesem für einen Tag stecken geblieben und es macht mich wahnsinnig

UPDATE: Ich habe "Kompilieren von Dateien ('libs/google-play-services.jar')" und jetzt sogar R gibt mir "kann nicht lösen Symbol"

+0

Sieht aus wie ein Fehler ist nicht im Stich gelassen (die Sie Ihre Abhängigkeit importieren) –

Antwort

0

Versuchen Sie, diese Linie in der Unterseite Ihrer build.gradle Datei hinzufügen

apply plugin: 'com.google.gms.google-services' 
+0

es baut sie keinen Effekt haben, wo ich es hinzufügen. Ich habe versucht, es beide unter anwenden Plugin: 'com.android.library' und am Ende der Datei. Es hatte keine Wirkung –

Verwandte Themen