mirror of
https://gitlab.futo.org/keyboard/latinime.git
synced 2024-09-28 14:54:30 +01:00
Show version in dumped info
Bug: 10315296 Change-Id: Icb8e271451f4f9c5b083bfb5eb408372479c2140
This commit is contained in:
parent
41b77116d3
commit
5982b1ea08
@ -3276,6 +3276,8 @@ public class LatinIME extends InputMethodService implements KeyboardActionListen
|
||||
|
||||
final Printer p = new PrintWriterPrinter(fout);
|
||||
p.println("LatinIME state :");
|
||||
p.println(" VersionCode = " + ApplicationUtils.getVersionCode(this));
|
||||
p.println(" VersionName = " + ApplicationUtils.getVersionName(this));
|
||||
final Keyboard keyboard = mKeyboardSwitcher.getKeyboard();
|
||||
final int keyboardMode = keyboard != null ? keyboard.mId.mMode : -1;
|
||||
p.println(" Keyboard mode = " + keyboardMode);
|
||||
|
@ -62,4 +62,22 @@ public final class ApplicationUtils {
|
||||
}
|
||||
return "";
|
||||
}
|
||||
|
||||
/**
|
||||
* A utility method to get the application's PackageInfo.versionCode
|
||||
* @return the application's PackageInfo.versionCode
|
||||
*/
|
||||
public static int getVersionCode(final Context context) {
|
||||
try {
|
||||
if (context == null) {
|
||||
return 0;
|
||||
}
|
||||
final String packageName = context.getPackageName();
|
||||
final PackageInfo info = context.getPackageManager().getPackageInfo(packageName, 0);
|
||||
return info.versionCode;
|
||||
} catch (final NameNotFoundException e) {
|
||||
Log.e(TAG, "Could not find version info.", e);
|
||||
}
|
||||
return 0;
|
||||
}
|
||||
}
|
||||
|
Loading…
x
Reference in New Issue
Block a user