I am trying to integrate Google Sign In in my Android app.
I have the followed the tutorial at:
https://firebase.google.com/docs/auth/android/google-signin?utm_source=studio
I am still not able resolve the following dependencies.
import com.google.android.gms.auth.api.signin.GoogleSignInAccount;
import com.google.android.gms.auth.api.signin.GoogleSignInOptions;
import com.google.android.gms.common.api.ApiException;
import com.google.android.gms.tasks.OnCompleteListener;
import com.google.android.gms.tasks.Task;
Please have a look at my gradle dependencies:
dependencies {
implementation fileTree(dir: 'libs', include: ['*.jar'])
androidTestImplementation('com.android.support.test.espresso:espresso-core:2.2.2', {
exclude group: 'com.android.support', module: 'support-annotations'
})
implementation 'com.android.support:appcompat-v7:27.1.1'
implementation 'com.android.support.constraint:constraint-layout:1.0.2'
implementation 'com.esri.arcgis.android:arcgis-android:10.2.9'
implementation 'com.github.pedroSG94:AutoPermissions:1.0.3'
implementation 'com.android.volley:volley:1.1.1'
implementation 'com.google.android.gms:play-services-gcm:15.0.1'
implementation 'com.google.firebase:firebase-core:16.0.3'
implementation 'com.google.firebase:firebase-messaging:17.3.0'
implementation 'com.google.firebase:firebase-auth:16.0.3'
implementation 'com.firebase:firebase-client-android:2.5.2'
implementation 'com.android.support:multidex:1.0.0'
implementation 'com.google.android.gms:play-services:12.0.1'
implementation 'com.google.android.gms:play-services-auth:16.0.0'
implementation 'com.google.android.gms:play-services-identity:15.0.1'
implementation 'com.android.support:design:27.+'
testImplementation 'junit:junit:4.12'
}
apply plugin: 'com.google.gms.google-services'
I have done everything I can find online, but I am still unable to resolve this.
Sorry just adding the text above with image.

