Skip to content

Instantly share code, notes, and snippets.

View richardrussell's full-sized avatar

Richard Russell richardrussell

View GitHub Profile
@richardrussell
richardrussell / MyActivity.java
Last active December 14, 2015 04:59
Easy way to get user to select and email address (or take default) from Google Accounts available on an Android device. See blog post here: http://www.entrepreneurskitchen.com/2013/02/getting-user-account-on-android.html
import com.google.android.gms.common.AccountPicker;
import android.accounts.AccountManager;
public class MyActivity extends Activity {
// a number to distinguish this startActivityForResult from any others
private static final int GET_GOOGLE_ACCOUNT = 1;
@Override
protected void onCreate(Bundle savedInstanceState) {