I didn't notice anyone had a posted a solution to this problem, so I thought I'd do so in case anyone else ran into it.
I was able to freeze apps fine with Titanium Backup on the latest ICS leak (XXLPB as of right now) but ran into some problems when I wanted to defrost them. Titanium Backup said they were defrosted successfully but they still were listed as frozen and didn't appear in the app drawer.
Here is how to solve the problem:
1. Find /data/system/packages.xml with Root Explorer or an equivalent
2. Make a backup of packages.xml right away in the same folder in case we mess anything up any need to restore it later
3. Copy packages.xml onto the root of your internal or external storage
4. Plug your device into your computer and copy packages.xml from the root of your storage over to your computer
5. Open the packages.xml on your computer with your editor of choice - I suggest Notepad++
6. Search for the string {enabled="2"} (without the { }). Every line ending in this represents a frozen app. The lines should look something like this:
7. Now for every app you wish to unfreeze, replace {enabled="2"} with {enabled="1"} (again, without the {})
7. Save packages.xml, move it back onto your phone's storage, and use Root Explorer or an equivalent to replace your original packages.xml at /data/system/packages.xml with your new one
8. Reboot
Props to olympicchicken for getting me most of the way to the answer: http://forum.xda-developers.com/showpost.php?p=20771481&postcount=113
***UPDATE*** Feb 29, 2011
See this post for a way to freeze and unfreeze system apps without messing with the packages.xml file. Thanks polzovotel.
I was able to freeze apps fine with Titanium Backup on the latest ICS leak (XXLPB as of right now) but ran into some problems when I wanted to defrost them. Titanium Backup said they were defrosted successfully but they still were listed as frozen and didn't appear in the app drawer.
Here is how to solve the problem:
1. Find /data/system/packages.xml with Root Explorer or an equivalent
2. Make a backup of packages.xml right away in the same folder in case we mess anything up any need to restore it later
3. Copy packages.xml onto the root of your internal or external storage
4. Plug your device into your computer and copy packages.xml from the root of your storage over to your computer
5. Open the packages.xml on your computer with your editor of choice - I suggest Notepad++
6. Search for the string {enabled="2"} (without the { }). Every line ending in this represents a frozen app. The lines should look something like this:
Code:
<package name="com.sec.android.widgetapp.socialhub" codePath="/system/app/SocialHubWidget.apk" nativeLibraryPath="/data/data/com.sec.android.widgetapp.socialhub/lib" flags="1" ft="11b7e237e00" it="11b7e237e00" ut="11b7e237e00" version="1" sharedUserId="10001" [COLOR="Red"]enabled="2"[/COLOR]>
7. Save packages.xml, move it back onto your phone's storage, and use Root Explorer or an equivalent to replace your original packages.xml at /data/system/packages.xml with your new one
8. Reboot
Props to olympicchicken for getting me most of the way to the answer: http://forum.xda-developers.com/showpost.php?p=20771481&postcount=113
***UPDATE*** Feb 29, 2011
See this post for a way to freeze and unfreeze system apps without messing with the packages.xml file. Thanks polzovotel.
Last edited:
