Improved debug info

This commit is contained in:
M66B 2019-03-10 11:31:40 +00:00
parent a190827b01
commit be7e97a0c5
1 changed files with 2 additions and 1 deletions

View File

@ -438,12 +438,13 @@ public class Helper {
// Get version info
String installer = context.getPackageManager().getInstallerPackageName(BuildConfig.APPLICATION_ID);
sb.append(String.format("%s: %s/%s %s/%s%s\r\n",
sb.append(String.format("%s: %s/%s %s/%s%s%s\r\n",
context.getString(R.string.app_name),
BuildConfig.APPLICATION_ID,
installer,
BuildConfig.VERSION_NAME,
hasValidFingerprint(context) ? "1" : "3",
BuildConfig.PLAY_STORE_RELEASE ? "p" : "",
isPro(context) ? "+" : ""));
sb.append(String.format("Android: %s (SDK %d)\r\n", Build.VERSION.RELEASE, Build.VERSION.SDK_INT));
sb.append("\r\n");