I am trying to implement an account picker with the following:
Intent intent = AccountPicker.newChooseAccountIntent(null, null, new String[]{"com.google"}, false, null, null, null, null);
startActivityForResult(intent, 1111);
but I get error on import and in the android part of import com.google.android.gms.common.AccountPicker
How can I fix this?
in build Gradle I have
dependencies {
compile fileTree(dir: 'libs', include: ['*.jar'])
testCompile 'junit:junit:4.12'
compile 'com.android.support:appcompat-v7:23.4.0'
compile 'com.android.support:design:23.0.1'
}
is it the same as the article here?
Exception java.lang.NoClassDefFoundError: com.google.android.gms.common.AccountPicker