Merge "Use userContext instead of context" into main

This commit is contained in:
Treehugger Robot
2025-03-03 18:24:44 -08:00
committed by Android (Google) Code Review
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)
}
}
}