Last active
July 9, 2016 22:40
-
-
Save thiagoolsilva/fb0be7f7fea46691f770f54a05a4c7f9 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
/** | |
* Get message from web server | |
* | |
* @return The message received | |
*/ | |
@WorkerThread | |
public String GetMessageFromWebServer(@NonNull Context context) { | |
... | |
try { | |
//Now we are using the flavor strategy | |
final String typeOfFlavor = context.getString(R.string.id_message_request); | |
... | |
} |
Sign up for free
to join this conversation on GitHub.
Already have an account?
Sign in to comment