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
I solved this issue by adding: In build.gradle:
build.gradle
defaultConfig { multiDexEnabled true }
in local.properties ,
local.properties
org.gradle.jvmargs=-XX\:MaxHeapSize\=512m -Xmx512m
mention dependency:
compile 'com.android.support:multidex:1.0.1'
Clean and Rebuild.