Skip to content

Instantly share code, notes, and snippets.

@udacityandroid
udacityandroid / Method 1
Created June 10, 2015 03:50
Android Development for Beginners : Define a Method
/**
* Get the email account name.
*
* @return the name of the account.
*/
private String getAccountName() {
return "android@gmail.com";
return "droid@gmail.com";
}