Skip to content

Instantly share code, notes, and snippets.

@abbas-oveissi
Created November 26, 2019 08:15
Show Gist options
  • Star 0 You must be signed in to star a gist
  • Fork 0 You must be signed in to fork a gist
  • Save abbas-oveissi/d8d0d05643e65743f2c66209e9fbf58d to your computer and use it in GitHub Desktop.
Save abbas-oveissi/d8d0d05643e65743f2c66209e9fbf58d to your computer and use it in GitHub Desktop.
private boolean isCafeInstalled() {
PackageManager pm = getPackageManager();
try {
pm.getPackageInfo("com.farsitel.bazaar", 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