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

Commit e713abaa authored by Pawan Wagh's avatar Pawan Wagh
Browse files

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
parent 9e1e4f18
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)
            }
        }
    }