Created
January 3, 2014 01:35
-
-
Save jhelmig/8230963 to your computer and use it in GitHub Desktop.
This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
| public void verifyEmail(View view) { | |
| EditText emailEditText = (EditText) findViewById(R.id.email_address); | |
| String email = emailEditText.getText().toString(); | |
| if( email != null && !email.isEmpty()) { | |
| String urlString = apiURL + "LicenseInfo.RegisteredUser.UserID=" + strikeIronUserName + "&LicenseInfo.RegisteredUser.Password=" + strikeIronPassword + "&VerifyEmail.Email=" + email + "&VerifyEmail.Timeout=30"; | |
| new CallAPI().execute(urlString); | |
| } | |
| } | |
Sign up for free
to join this conversation on GitHub.
Already have an account?
Sign in to comment