(Context context)
| 1442 | } |
| 1443 | |
| 1444 | private static String getAnnotatedVersion(Context context) { |
| 1445 | return BuildConfig.VERSION_NAME + BuildConfig.REVISION + "/" + |
| 1446 | (Helper.hasValidFingerprint(context) ? "1" : "3") + |
| 1447 | (BuildConfig.PLAY_STORE_RELEASE ? "p" : "") + |
| 1448 | (BuildConfig.DEBUG ? "d" : "") + |
| 1449 | (ConnectionHelper.vpnActive(context) ? "v" : "") + |
| 1450 | (ActivityBilling.isPro(context) ? "+" : ""); |
| 1451 | } |
| 1452 | |
| 1453 | static Uri getSupportUri(Context context, String reference) { |
| 1454 | SharedPreferences prefs = PreferenceManager.getDefaultSharedPreferences(context); |
no test coverage detected