Donate to e Foundation | Murena handsets with /e/OS | Own a part of Murena! Learn more

Commit 0aa78507 authored by Treehugger Robot's avatar Treehugger Robot Committed by Android (Google) Code Review
Browse files

Merge "Use userContext instead of context" into main

parents 11a995c0 e713abaa
Loading
Loading
Loading
Loading
+1 −1
Original line number Diff line number Diff line
@@ -13143,7 +13143,7 @@ Data usage charges may apply.</string>
    <string name="page_agnostic_notification_action">Read more</string>
    <string name= "enable_16k_app_compat_title">Run app with page size compat mode</string>
    <string name= "enable_16k_app_compat_details">App will be forced stopped and run in page size compatibility mode on 16 KB device when toggled.</string>
    <string name= "enable_16k_app_compat_details">App will be stopped and run in page size compatibility mode on 16 KB device when toggled.</string>
    <string name="stop_app_dlg_title">Stop app?</string>
    <!-- [CHAR LIMIT=200] Manage applications, text for dialog when killing persistent apps-->
+1 −1
Original line number Diff line number Diff line
@@ -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)
            }
        }
    }