I am trying to integrate Google sign in, in my app, I added these libraries:
compile \'com.google.android.gms:play-services-identity:8.1.0\' compile \'com.go
you can see the documentation of Android
android { compileSdkVersion 21 buildToolsVersion "21.1.0" defaultConfig { ... minSdkVersion 14 targetSdkVersion 21 ... // Enabling multidex support. multiDexEnabled true } ... } dependencies { compile 'com.android.support:multidex:1.0.0' }
Manifest.xml
...