Use userContext instead of context

- update string to remove word 'forced'

Test: m Settings && adb install -r $ANDROID_PRODUCT_OUT/system_ext/priv-app/Settings/Settings.apk
Bug: 389696304
Flag: EXEMPT bug_fix
Change-Id: I79d4ec1afbf44131bd53d786c126c14c163a9207
This commit is contained in:
Pawan Wagh
2025-03-03 22:43:09 +00:00
parent 9e1e4f18a3
commit e713abaae7
2 changed files with 2 additions and 2 deletions

View File

@@ -190,7 +190,7 @@ class PackageInfoPresenter(
requireAuthAndExecute {
coroutineScope.launch(Dispatchers.Default) {
Log.d(TAG, "Stopping package $packageName for user")
context.activityManager.stopPackageForUser(packageName)
userContext.activityManager.stopPackageForUser(packageName)
}
}
}