Skip to content

Instantly share code, notes, and snippets.

@ec84b4
Last active March 6, 2017 13:02
Show Gist options
  • Save ec84b4/1d9600042874fb240119e2a277dfba0d to your computer and use it in GitHub Desktop.
Save ec84b4/1d9600042874fb240119e2a277dfba0d to your computer and use it in GitHub Desktop.
/**
* checks whether IranApps is installed on the device
*
* @return true if IranApps is installed on the device otherwise false.
*/
private boolean isIranAppsInstalled(Context context) {
try {
context.getPackageManager().getPackageInfo("ir.tgbs.android.iranapp", 0);
return true;
} catch (PackageManager.NameNotFoundException e) {
return false;
}
}
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment