Reduced logging

This commit is contained in:
M66B 2021-05-02 18:33:48 +02:00
parent 19e934db16
commit b0f2fb162f
1 changed files with 4 additions and 1 deletions

View File

@ -477,8 +477,11 @@ public class Helper {
PackageManager pm = context.getPackageManager();
pm.getPackageInfo("com.android.vending", 0);
hasPlayStore = true;
} catch (PackageManager.NameNotFoundException ex) {
Log.i(ex);
hasPlayStore = false;
} catch (Throwable ex) {
Log.w(ex);
Log.e(ex);
hasPlayStore = false;
}
return hasPlayStore;