summaryrefslogtreecommitdiff
diff options
context:
space:
mode:
authorAlex Buynytskyy <alexbuy@google.com>2023-03-23 22:56:01 +0000
committerAlex Buynytskyy <alexbuy@google.com>2023-03-23 23:17:07 +0000
commite7641c03f77d6667e2e8c1be96454102fbc4f008 (patch)
treea3caa957eec4ab08ff72fdc0b4d18367fdd4cc7e
parentb3761ea30557687bdf4db9c0fdf69354c72519b3 (diff)
downloadStk-e7641c03f77d6667e2e8c1be96454102fbc4f008.tar.gz
More debug info on package state changes.
Bug: 273282505 Test: presubmit Change-Id: I0cfe7f5920ad7f2733ceba4d156283f827a967bb
-rw-r--r--src/com/android/stk/StkAppInstaller.java2
1 files changed, 1 insertions, 1 deletions
diff --git a/src/com/android/stk/StkAppInstaller.java b/src/com/android/stk/StkAppInstaller.java
index 1e96b5e..9439194 100644
--- a/src/com/android/stk/StkAppInstaller.java
+++ b/src/com/android/stk/StkAppInstaller.java
@@ -82,7 +82,7 @@ final class StkAppInstaller {
: PackageManager.COMPONENT_ENABLED_STATE_DISABLED;
if (current != expected) {
pm.setComponentEnabledSetting(component, expected, PackageManager.DONT_KILL_APP,
- userId);
+ userId, "StkAppInstaller");
if (DBG) CatLog.d(LOG_TAG, "SIM Toolkit is " + (enable ? "enabled" : "disabled"));
}
}