Last active
March 13, 2018 07:01
-
-
Save shameemreza/d887b6ae1e86053f7abebe734122ab9a to your computer and use it in GitHub Desktop.
This file contains 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
//Try Google play | |
intent.setData(Uri.parse("market://details?id=com.cubeactive.qnotelistfree")); | |
if (!MyStartActivity(intent)) { | |
//Market (Google play) app seems not installed, let's try to open a webbrowser | |
intent.setData(Uri.parse("https://play.google.com/store/apps/details?id=com.melopixels.mastiunlimited")); | |
if (!MyStartActivity(intent)) { | |
//Well if this also fails, we have run out of options, inform the user. | |
Toast.makeText(this, "Could not open Android market, please install the market app.", Toast.LENGTH_SHORT).show(); | |
} | |
} |
Sign up for free
to join this conversation on GitHub.
Already have an account?
Sign in to comment