From 3c24cfed8d5116ff21986acb60a918cb079a0efd Mon Sep 17 00:00:00 2001 From: Kenny Root Date: Thu, 12 Apr 2012 14:27:21 -0700 Subject: [PATCH] Allow movement of forward-locked apps to SD Forward-locked apps are now in ASEC containers which can exist on both SD card and internal storage. Merry Christmas. Change-Id: If793cf76858395bfc67cd18ab18f488a83757d5f --- src/com/android/settings/applications/ManageApplications.java | 3 +-- 1 file changed, 1 insertion(+), 2 deletions(-) diff --git a/src/com/android/settings/applications/ManageApplications.java b/src/com/android/settings/applications/ManageApplications.java index 8a64968f961..d08b3f81ad6 100644 --- a/src/com/android/settings/applications/ManageApplications.java +++ b/src/com/android/settings/applications/ManageApplications.java @@ -88,8 +88,7 @@ final class CanBeOnSdCardChecker { if ((info.flags & ApplicationInfo.FLAG_EXTERNAL_STORAGE) != 0) { canBe = true; } else { - if ((info.flags & ApplicationInfo.FLAG_FORWARD_LOCK) == 0 && - (info.flags & ApplicationInfo.FLAG_SYSTEM) == 0) { + if ((info.flags & ApplicationInfo.FLAG_SYSTEM) == 0) { if (info.installLocation == PackageInfo.INSTALL_LOCATION_PREFER_EXTERNAL || info.installLocation == PackageInfo.INSTALL_LOCATION_AUTO) { canBe = true;