1
0
Fork 0
mirror of https://github.com/M66B/NetGuard.git synced 2025-01-03 13:54:09 +00:00

Revert "Remove IAB debug code"

This reverts commit 4d85a059a9.
This commit is contained in:
M66B 2016-07-25 08:17:39 +02:00
parent 37193ddf35
commit 10594c398b

View file

@ -175,12 +175,18 @@ public class IAB implements ServiceConnection {
if (ActivityPro.SKU_SUPPORT1.equals(sku) || ActivityPro.SKU_SUPPORT2.equals(sku))
return prefs.getBoolean(sku, false);
if (Util.isDebuggable(context) || Util.getSelfVersionName(context).contains("beta"))
return true;
return (prefs.getBoolean(sku, false) ||
prefs.getBoolean(ActivityPro.SKU_PRO1, false) ||
prefs.getBoolean(ActivityPro.SKU_DONATION, false));
}
public static boolean isPurchasedAny(Context context) {
if (Util.isDebuggable(context))
return true;
SharedPreferences prefs = context.getSharedPreferences("IAB", Context.MODE_PRIVATE);
for (String key : prefs.getAll().keySet())
if (prefs.getBoolean(key, false))