Removing apps from pre-baked roms - Desire Themes and Apps

is there any way to remove apps that are included in prebaked roms such as teeter and wavesecure in the MCR 3.1???

unzip the rom, go to /system/app/ and delete .apks you don't want, then rezip and resign.

How to resign a Rom?

http://forum.xda-developers.com/showthread.php?t=682972
Thats how, and its very simple.

There must be a quicker way eg: from adb/console when in recovery?

Yes there is...
1. First get into recovery mode with the Green menu then close that command prompt and open a new one and cd to Desire root folder. (Files on your pc.)
2. You now need to mount the /system folder using the code below
Code:
adb-windows shell mount /system
3. Now you will need to get the list of installed apk files
Code:
adb-windows shell ls /system/app/
and the output should look like this:
Code:
AccountAndSyncSettings.apk HtcWeatherWallpaper.apk
ApplicationsProvider.apk Jbed.apk
Bluetooth.apk LiveWallpapers.apk
BrcmBluetoothServices.apk LiveWallpapersPicker.apk
Browser.apk MagicSmokeWallpapers.apk
Calculator.apk Mail.apk
Calendar.apk MarketUpdater.apk
CalendarProvider.apk MediaProvider.apk
CertInstaller.apk MediaUploader.apk
CheckinProvider.apk Mms.apk
Clicker.apk Mode10Wallpapers.apk
ContactsProvider.apk NetworkLocation.apk
CustomizationSettingsProvider.apk NewsReader.apk
CustomizationSetup.apk PCSCII.apk
DCSImpl.apk PDFViewer.apk
DCSStock.apk PackageInstaller.apk
DCSUtility.apk Phone.apk
DownloadProvider.apk PicoTts.apk
DrmProvider.apk PluginManager.apk
EnhancedGoogleSearchProvider.apk QuickLookup.apk
Facebook.apk RSS.apk
FieldTest.apk Rosie.apk
FilePicker.apk Settings.apk
FlashLitePlugin.apk SettingsProvider.apk
FlashPlayer.apk SetupWizard.apk
Flickr.apk SocialNetworkProvider.apk
FriendStream.apk Stk.apk
GSD.apk Stock.apk
GenieWidget.apk Street.apk
GlobalSearch.apk Superuser.apk
Gmail.apk Talk.apk
GmailProvider.apk TalkProvider.apk
GoogleApps.apk TelephonyProvider.apk
GoogleCheckin.apk TtsService.apk
GoogleContactsSyncAdapter.apk Updater.apk
GooglePartnerSetup.apk UploadProvider.apk
GoogleSettingsProvider.apk UserDictionaryProvider.apk
GoogleSubscribedFeedsProvider.apk Vending.apk
HTCAlbum.apk VisualizationWallpapers.apk
HTCCamera.apk VoiceSearchWithKeyboard.apk
HTCSetupWizard.apk VpnServices.apk
HTC_IME.apk Weather.apk
HTMLViewer.apk WeatherAgentService.apk
HtcAddProgramWidget.apk WeatherProvider.apk
HtcClockWidget.apk WeatherSyncProvider.apk
HtcConnectivity.apk WidgetDownloadManager.apk
HtcContacts.apk WorldClock.apk
HtcDialer.apk YouTube.apk
HtcFMRadio.apk com.htc.FriendStreamWidget.apk
HtcFacebook.apk com.htc.MusicWidget.apk
HtcFootprints.apk com.htc.NewsReaderWidget.apk
HtcFootprintsWidget.apk com.htc.StockWidget.apk
HtcLocationPicker.apk com.htc.TwitterWidget.apk
HtcLocationService.apk com.htc.WeatherWidget.apk
HtcLockScreen.apk com.wsandroid.apk
HtcMessageUploader.apk gtalkservice.apk
HtcMusic.apk htcbookmarkwidget.apk
HtcNaviPanel.apk htccalendarwidgets.apk
HtcPhotoWidget.apk htccontactwidgets.apk
HtcRingtoneTrimmer.apk htcmailwidgets.apk
HtcSettingsProvider.apk htcmsgwidgets.apk
HtcSoundRecorder.apk htcsearchwidgets.apk
HtcStreamPlayer.apk htcsettingwidgets.apk
HtcSyncwidget.apk restartapp.apk
HtcTwitter.apk teeter.apk
4. there are 2 methods of removal, they are
4a. Just delete the files
4b. Move to the sdcard
Use one of the following methods
4a. Now you have a list of the files you can chose the ones you want to remove , note that this part is case sensitive so com.htc.twitterwidget.apk is not the same as com.htc.TwitterWidget.apk, use the following code(example used is the Stocks app and widget):
Code:
adb-windows shell rm /system/app/Stock.apk
adb-windows shell rm /system/app/com.htc.StockWidget.apk
4b. Also case sensitive, to move the files to your sdcard(which aso removes from the device):
Code:
adb-windows shell mount /sdcard
adb-windows shell mkdir /sdcard/device_files
adb-windows mv /system/app/Stock.apk /sdcard/device-files
adb-windows mv /system/app/com.htc.StockWidget.apk /sdcard/device-files
The files will be moved to the new folder on your sdcard called /device-files, once there you can also backup to your pc for a bit of extra backup
5. Repeat Step 4. untill all the apk files that you want to remove are gone and to check that they are gone use
Code:
adb-windows shell ls /system/app/
Restoring your backed up files
Use the following code,
Code:
adb-windows shell mount /sdcard
adb-windows shell mv /sdcard/device-filesStock.apk /system/app/
adb-windows shell mv /sdcard/device-files/com.htc.StockWidget.apk /system/app/
Hope this helps.
Cred vdubs @modaco

Thanks that's great!
Edit*
Can the Java application be removed? I know it's bundled into MCR but it's using 2.5MB and I'm not using Apps2SD as I'm holding off for a FroYo port.
Edit2*
No matter, I will keep it as it seems getjar.com has some cool stuff
Edit3*
Na removed

thank you
ephumuris said:
Yes there is...
1. First get into recovery mode with the Green menu then close that command prompt and open a new one and cd to Desire root folder. (Files on your pc.)
2. You now need to mount the /system folder using the code below
Code:
adb-windows shell mount /system
3. Now you will need to get the list of installed apk files
Code:
adb-windows shell ls /system/app/
and the output should look like this:
Code:
AccountAndSyncSettings.apk HtcWeatherWallpaper.apk
ApplicationsProvider.apk Jbed.apk
Bluetooth.apk LiveWallpapers.apk
BrcmBluetoothServices.apk LiveWallpapersPicker.apk
Browser.apk MagicSmokeWallpapers.apk
Calculator.apk Mail.apk
Calendar.apk MarketUpdater.apk
CalendarProvider.apk MediaProvider.apk
CertInstaller.apk MediaUploader.apk
CheckinProvider.apk Mms.apk
Clicker.apk Mode10Wallpapers.apk
ContactsProvider.apk NetworkLocation.apk
CustomizationSettingsProvider.apk NewsReader.apk
CustomizationSetup.apk PCSCII.apk
DCSImpl.apk PDFViewer.apk
DCSStock.apk PackageInstaller.apk
DCSUtility.apk Phone.apk
DownloadProvider.apk PicoTts.apk
DrmProvider.apk PluginManager.apk
EnhancedGoogleSearchProvider.apk QuickLookup.apk
Facebook.apk RSS.apk
FieldTest.apk Rosie.apk
FilePicker.apk Settings.apk
FlashLitePlugin.apk SettingsProvider.apk
FlashPlayer.apk SetupWizard.apk
Flickr.apk SocialNetworkProvider.apk
FriendStream.apk Stk.apk
GSD.apk Stock.apk
GenieWidget.apk Street.apk
GlobalSearch.apk Superuser.apk
Gmail.apk Talk.apk
GmailProvider.apk TalkProvider.apk
GoogleApps.apk TelephonyProvider.apk
GoogleCheckin.apk TtsService.apk
GoogleContactsSyncAdapter.apk Updater.apk
GooglePartnerSetup.apk UploadProvider.apk
GoogleSettingsProvider.apk UserDictionaryProvider.apk
GoogleSubscribedFeedsProvider.apk Vending.apk
HTCAlbum.apk VisualizationWallpapers.apk
HTCCamera.apk VoiceSearchWithKeyboard.apk
HTCSetupWizard.apk VpnServices.apk
HTC_IME.apk Weather.apk
HTMLViewer.apk WeatherAgentService.apk
HtcAddProgramWidget.apk WeatherProvider.apk
HtcClockWidget.apk WeatherSyncProvider.apk
HtcConnectivity.apk WidgetDownloadManager.apk
HtcContacts.apk WorldClock.apk
HtcDialer.apk YouTube.apk
HtcFMRadio.apk com.htc.FriendStreamWidget.apk
HtcFacebook.apk com.htc.MusicWidget.apk
HtcFootprints.apk com.htc.NewsReaderWidget.apk
HtcFootprintsWidget.apk com.htc.StockWidget.apk
HtcLocationPicker.apk com.htc.TwitterWidget.apk
HtcLocationService.apk com.htc.WeatherWidget.apk
HtcLockScreen.apk com.wsandroid.apk
HtcMessageUploader.apk gtalkservice.apk
HtcMusic.apk htcbookmarkwidget.apk
HtcNaviPanel.apk htccalendarwidgets.apk
HtcPhotoWidget.apk htccontactwidgets.apk
HtcRingtoneTrimmer.apk htcmailwidgets.apk
HtcSettingsProvider.apk htcmsgwidgets.apk
HtcSoundRecorder.apk htcsearchwidgets.apk
HtcStreamPlayer.apk htcsettingwidgets.apk
HtcSyncwidget.apk restartapp.apk
HtcTwitter.apk teeter.apk
4. there are 2 methods of removal, they are
4a. Just delete the files
4b. Move to the sdcard
Use one of the following methods
4a. Now you have a list of the files you can chose the ones you want to remove , note that this part is case sensitive so com.htc.twitterwidget.apk is not the same as com.htc.TwitterWidget.apk, use the following code(example used is the Stocks app and widget):
Code:
adb-windows shell rm /system/app/Stock.apk
adb-windows shell rm /system/app/com.htc.StockWidget.apk
4b. Also case sensitive, to move the files to your sdcard(which aso removes from the device):
Code:
adb-windows shell mount /sdcard
adb-windows shell mkdir /sdcard/device_files
adb-windows mv /system/app/Stock.apk /sdcard/device-files
adb-windows mv /system/app/com.htc.StockWidget.apk /sdcard/device-files
The files will be moved to the new folder on your sdcard called /device-files, once there you can also backup to your pc for a bit of extra backup
5. Repeat Step 4. untill all the apk files that you want to remove are gone and to check that they are gone use
Code:
adb-windows shell ls /system/app/
Restoring your backed up files
Use the following code,
Code:
adb-windows shell mount /sdcard
adb-windows shell mv /sdcard/device-filesStock.apk /system/app/
adb-windows shell mv /sdcard/device-files/com.htc.StockWidget.apk /system/app/
Hope this helps.
Cred vdubs @modaco
Click to expand...
Click to collapse
Thank you very much. Your message is perfect.

Related

A favor... gallery.apk off evo

Can somebody upload the gallery.apk off the evo?
I downloaded the rom but can not figure out how to extract it out of the .exe package.
Give me some adb codes and I'll pull it off the phone for you.
I don't see it in /system/app... and without root very few commands are working (first phone that I've had that wasn't rooted...).
here's what's in there:
AccountAndSyncSettings.apk
AccountAndSyncSettings.odex
AccountSyncManager.apk
AccountSyncManager.odex
amazonmp3.apk
ApplicationsProvider.apk
ApplicationsProvider.odex
Bluetooth.apk
Bluetooth.odex
BrcmBluetoothServices.apk
BrcmBluetoothServices.odex
Browser.apk
Browser.odex
Calculator.apk
Calculator.odex
Calendar.apk
Calendar.odex
CalendarProvider.apk
CalendarProvider.odex
CertInstaller.apk
CertInstaller.odex
CheckinProvider.apk
CheckinProvider.odex
Clicker.apk
Clicker.odex
com.htc.FriendStreamWidget.apk
com.htc.FriendStreamWidget.odex
com.htc.MusicWidget.apk
com.htc.MusicWidget.odex
com.htc.NewsReaderWidget.apk
com.htc.NewsReaderWidget.odex
com.htc.StockWidget.apk
com.htc.StockWidget.odex
com.htc.TwitterWidget.apk
com.htc.TwitterWidget.odex
com.htc.WeatherWidget.apk
com.htc.WeatherWidget.odex
ContactsProvider.apk
ContactsProvider.odex
CustomizationSettingsProvider.apk
CustomizationSettingsProvider.odex
CustomizationSetup.apk
CustomizationSetup.odex
DCSImpl.apk
DCSImpl.odex
DCSStock.apk
DCSStock.odex
DCSUtility.apk
DCSUtility.odex
DMPortRead.apk
DMPortRead.odex
DmService.apk
DownloadProvider.apk
DownloadProvider.odex
DrmProvider.apk
DrmProvider.odex
EnhancedGoogleSearchProvider.apk
EPST.apk
EPST.odex
Facebook.apk
FieldTest.apk
FieldTrial.apk
FieldTrial.odex
FilePicker.apk
FilePicker.odex
FlashLitePlugin.apk
FlashLitePlugin.odex
FlashPlayer.apk
FlashPlayer.odex
Flickr.apk
Flickr.odex
FriendStream.apk
FriendStream.odex
FutureDialService.apk
FutureDialService.odex
GlobalSearch.apk
GlobalSearch.odex
Gmail.apk
GmailProvider.apk
GoogleApps.apk
GoogleCheckin.apk
GoogleContactsSyncAdapter.apk
GooglePartnerSetup.apk
GoogleSearch.apk
GoogleSearch.odex
GoogleSettingsProvider.apk
GoogleSubscribedFeedsProvider.apk
GSD.apk
GSD.odex
gtalkservice.apk
HTC_IME.apk
HTC_IME.odex
HtcAddProgramWidget.apk
HtcAddProgramWidget.odex
HTCAlbum.apk
HTCAlbum.odex
htcbookmarkwidget.apk
htcbookmarkwidget.odex
htccalendarwidgets.apk
htccalendarwidgets.odex
HTCCamera.apk
HTCCamera.odex
HtcClockWidget.apk
HtcClockWidget.odex
HtcConnectivity.apk
HtcConnectivity.odex
HtcContacts.apk
HtcContacts.odex
htccontactwidgets.apk
htccontactwidgets.odex
HtcDialer.apk
HtcDialer.odex
HtcDm.apk
HtcDm.odex
HtcFacebook.apk
HtcFacebook.odex
HtcFMRadio.apk
HtcFMRadio.odex
HtcFootprints.apk
HtcFootprints.odex
HtcFootprintsWidget.apk
HtcFootprintsWidget.odex
HtcIQAgent.apk
HtcIQAgent.odex
HtcLocationPicker.apk
HtcLocationPicker.odex
HtcLocationService.apk
HtcLocationService.odex
HtcLockScreen.apk
HtcLockScreen.odex
htcmailwidgets.apk
htcmailwidgets.odex
HtcMessageUploader.apk
HtcMessageUploader.odex
HTCMobileGuide.apk
htcmsgwidgets.apk
htcmsgwidgets.odex
HtcMusic.apk
HtcMusic.odex
HtcNaviPanel.apk
HtcNaviPanel.odex
HTCNew.apk
HTCNew.odex
HtcPhotoWidget.apk
HtcPhotoWidget.odex
HtcRingtoneTrimmer.apk
HtcRingtoneTrimmer.odex
htcsearchwidgets.apk
htcsearchwidgets.odex
HtcSettingsProvider.apk
HtcSettingsProvider.odex
htcsettingwidgets.apk
htcsettingwidgets.odex
HTCSetupWizard.apk
HTCSetupWizard.odex
HtcSoundRecorder.apk
HtcSoundRecorder.odex
HtcStreamPlayer.apk
HtcStreamPlayer.odex
HtcTwitter.apk
HtcTwitter.odex
HtcWeatherWallpaper.apk
HtcWeatherWallpaper.odex
HTMLViewer.apk
HTMLViewer.odex
IQRD.apk
IQRD.odex
Launcher2.apk
Launcher2.odex
LiveWallpapers.apk
LiveWallpapers.odex
LiveWallpapersPicker.apk
LiveWallpapersPicker.odex
MagicSmokeWallpapers.apk
MagicSmokeWallpapers.odex
Mail.apk
Mail.odex
Maps.apk
MarketUpdater.apk
MediaProvider.apk
MediaProvider.odex
MediaUploader.apk
Mms.apk
Mms.odex
Mode10Wallpapers.apk
Mode10Wallpapers.odex
NetworkLocation.apk
NewsReader.apk
NewsReader.odex
PackageInstaller.apk
PackageInstaller.odex
PCSCII.apk
PCSCII.odex
PDFViewer.apk
PDFViewer.odex
Phone.apk
Phone.odex
PicoTts.apk
PicoTts.odex
PluginManager.apk
PluginManager.odex
QuickLookup.apk
QuickLookup.odex
Quickoffice.apk
restartapp.apk
restartapp.odex
Rosie.apk
Rosie.odex
RSS.apk
RSS.odex
SDSA.apk
Settings.apk
Settings.odex
SettingsProvider.apk
SettingsProvider.odex
SetupWizard.apk
SocialNetworkProvider.apk
SocialNetworkProvider.odex
Sprint_App_Updater.apk
Sprint_NASCAR.apk
Sprint_Navigation.apk
Sprint_NFL.apk
Sprint_Promotion.apk
Sprint_Qik.apk
Sprint_TV.apk
Sprint_VVM.apk
SprintTVWidget.apk
Stock.apk
Stock.odex
Street.apk
Talk.apk
TalkProvider.apk
teeter.apk
teeter.odex
TelephonyProvider.apk
TelephonyProvider.odex
TtsService.apk
TtsService.odex
Updater.apk
Updater.odex
UploadProvider.apk
UploadProvider.odex
UserDictionaryProvider.apk
UserDictionaryProvider.odex
Vending.apk
VisualizationWallpapers.apk
VisualizationWallpapers.odex
VoiceDialer.apk
VoiceDialer.odex
VoiceSearch.apk
VpnServices.apk
VpnServices.odex
Weather.apk
Weather.odex
WeatherProvider.apk
WeatherProvider.odex
WeatherSyncProvider.apk
WeatherSyncProvider.odex
WidgetDownloadManager.apk
WidgetDownloadManager.odex
WifiRouter.apk
WifiRouter.odex
WorldClock.apk
WorldClock.odex
YouTube.apk
Click to expand...
Click to collapse
Tenny said:
I don't see it in /system/app... and without root very few commands are working (first phone that I've had that wasn't rooted...).
here's what's in there:
Click to expand...
Click to collapse
is that launcher2 i see in there? the evo(nor any htc sense phones) doesnt have the gallery.apk...
i'm pretty sure is the htcphotowidget. it is on the incredible. is called photos though and not gallery as an icon.
tommy96814 said:
i'm pretty sure is the htcphotowidget. it is on the incredible. is called photos though and not gallery as an icon.
Click to expand...
Click to collapse
well yeah that is in there but if he is talking about gallery.apk. that is the 3d gallery from the nexus one...
Edit: OP are u talking about the HTCAlbum.apk?
No, I am not looking for the 3D gallery, just the default gallery for browsing photos, it looks like it is an update to me and we should be able to apply it to other roms.
Anybody able to pull the HTCAlbum.apk, .odex, and htcphotowidget out and drop them in a zip for us?
osufishman said:
No, I am not looking for the 3D gallery, just the default gallery for browsing photos, it looks like it is an update to me and we should be able to apply it to other roms.
Anybody able to pull the HTCAlbum.apk, .odex, and htcphotowidget out and drop them in a zip for us?
Click to expand...
Click to collapse
its the same app from the htc hero 2.1 update and the desire and the incredible. nothing has changed in it. but i can make a zip for u if u want it
I am talking about camera gallery shown at the end of this video.
youtube.com/watch?v=UpwupQVUWII&feature=channel
If its the same files, I will try to get them off the hero rom.
thanks,
osufishman said:
I am talking about camera gallery shown at the end of this video.
youtube.com/watch?v=UpwupQVUWII&feature=channel
If its the same files, I will try to get them off the hero rom.
thanks,
Click to expand...
Click to collapse
yeah its the same file. just fyi the one on the hero doesnt have the colored sliders. rip it out of a htc legend rom like darchlegend. or just flash that rom or fresh toast or something but it has all the same features and looks
youre welcome
rss app
Any chance of getting the rss app off the evo and putting it on my incredible? Any help would be appreciated.

Removing stock apps

now before everyone tells me to search, I definitely have, and have found a bunch. however, none of the suggestions are working.
I wan't to remove things like flickr, facebook, footprints, etc.
I have a rooted phone and have flashed the liberated ROM.
when I try to remove using adb devices I get either "file does not exist" or something regarding I only have read-only access, even though I input a command that supposedly gives me read-write access.
I downloaded titanium backup and removed apps from there, restarted the phone and they still remain.
Also downloaded root file manager, removed the apps, restarted, and they all still remain.
I've managed to backup all my system apps, but they remain in the /system/apps folder and they're bugging the crap outta me!
any help?
thanks!
I'd also like to know!
Sent from my HTC Liberty using XDA App
can you press (and hold down) the app icon and does a Delete button then show up on the bottom of the display?
The filesystem is mounted read - only. Having root permissions doesn't change this all by itself.
Try this:
You must be rooted
to mount the filesystem read/write: adb shell mount -o remount,rw -t yaffs2 /dev/block/mtdblock4 /system
Delete the apk with whatever method
mount the filesystem ro again: adb shell mount -o remount,ro -t yaffs2 /dev/block/mtdblock4 /system
Still no luck. =/ I'm trying to remove flickr and facebook, mainly. I mount as RW, uninstall apps with root explorer or adb shell, remount as RO, the unit automatically reboots and after boot, the apps are still there and fully functional. Hmmmmm.........
I have the same reboot issue. I did find a way that works on one of the threads here...
Boot into Clockwork recovery
./adb shell
mount /system
rm /system/app/whatever.apk
Maybe it will work for you too?
Does not Root Explorer have read/write after you have rooted your phone and given Root Explorer Superuser Permission?. I see that option and it appears to delete the /system/app/whatever.apk just fine. Even doing a search after the apk is gone. However as soon as I reboot the device the .apk is back and the app is not gone.
attn1 said:
The filesystem is mounted read - only. Having root permissions doesn't change this all by itself.
Try this:
You must be rooted
to mount the filesystem read/write: adb shell mount -o remount,rw -t yaffs2 /dev/block/mtdblock4 /system
Delete the apk with whatever method
mount the filesystem ro again: adb shell mount -o remount,ro -t yaffs2 /dev/block/mtdblock4 /system
Click to expand...
Click to collapse
dmellenbruch said:
Still no luck. =/ I'm trying to remove flickr and facebook, mainly. I mount as RW, uninstall apps with root explorer or adb shell, remount as RO, the unit automatically reboots and after boot, the apps are still there and fully functional. Hmmmmm.........
Click to expand...
Click to collapse
I had the same issue, First i rooted and installed Superuser permissions, i uninstalled them and deleted them using Titanium Backup, use astro file manager to verify that the APk files were no longer in the directory then when the phone restarts all the aps come right back like nothing ever happened.
I got upset and just flashed the liberated b003 rom, If i had known that flashing that rom wouldn't wipe out my user data i would have flashed right from the start since all the ATT crapware was removed.
Summary please, what is the consensus or best way to achieve the OP question?
I was able to remove Stocks, Peep, Footprint, News, the stock Music player and some other stuff... Im in class right now so im trying to pull this off the top of my head and cant try it to verify. I'll post back later tonight when I get home the 100% method but I think this is it.
-boot into recovery
-Mount /system partition
-adb remount
-adb shell
-cd /system/app
***I used -ls to list everything in the folder on my mac, not sure what the command or you windows people would be. But that listed every .apk and .odex file in the /app directory***
-Locate the files you want to remove
- rm what-ever-file-you-want-gone.apk
- rm what-ever-file-you-want-gone.odex
***Then I ran -ls again to verify that the file was no longer listed in the directory***
-Reboot phone and enjoy.
anyone tested if Droid Explorer works for this situation?
Thanks redapex. Your instructions were perfect.
Ok good. Glad i got it right...
Sent from my HTC Liberty using XDA App
Firearm said:
Does not Root Explorer have read/write after you have rooted your phone and given Root Explorer Superuser Permission?. I see that option and it appears to delete the /system/app/whatever.apk just fine. Even doing a search after the apk is gone. However as soon as I reboot the device the .apk is back and the app is not gone.
Click to expand...
Click to collapse
No. Root and read/write access are two different matters. As it turns out, we don't have read/write access to /system reliably unless we are in clockwork recovery.
redapex said:
I was able to remove Stocks, Peep, Footprint, News, the stock Music player and some other stuff... Im in class right now so im trying to pull this off the top of my head and cant try it to verify. I'll post back later tonight when I get home the 100% method but I think this is it.
-boot into recovery
-Mount /system partition
-adb remount
-adb shell
-cd /system/app
***I used -ls to list everything in the folder on my mac, not sure what the command or you windows people would be. But that listed every .apk and .odex file in the /app directory***
-Locate the files you want to remove
- rm what-ever-file-you-want-gone.apk
- rm what-ever-file-you-want-gone.odex
***Then I ran -ls again to verify that the file was no longer listed in the directory***
-Reboot phone and enjoy.
Click to expand...
Click to collapse
Good job. Now pay attention to the blackboard.
out of this list, is there an .apk & .odex that is mandatory to maintain normal phone functions, ie. from the list of prefix HTC.... can't tell for sure what each
item does
with items like these, I have no problem identifying and removing
HtcTwitter.odex
HtcTwitter.apk
but for example these.. what does each item below do?
DCSStock.odex
DCSStock.apk
Street.apk
Stock.odex
Stock.apk
MarketUpdater.apk
***
# cd /system/app
cd /system/app
# ls
ls
TalkProvider.apk
Talk.apk
Superuser.apk
Street.apk
Stock.odex
Stock.apk
Stk.odex
Stk.apk
SocialNetworkProvider.odex
SocialNetworkProvider.apk
SetupWizard.apk
SettingsProvider.odex
SettingsProvider.apk
Settings.odex
Settings.apk
Rosie.odex
Rosie.apk
RSS.odex
RSS.apk
Quickoffice.apk
QuickLookup.odex
QuickLookup.apk
PluginManager.odex
PluginManager.apk
PicoTts.odex
PicoTts.apk
Phone.odex
Phone.apk
PackageInstaller.odex
PackageInstaller.apk
PDFViewer.odex
PDFViewer.apk
PCSCII.odex
PCSCII.apk
NewsReader.odex
NewsReader.apk
NetworkLocation.apk
Mms.odex
Mms.apk
MediaUploader.apk
MediaProvider.odex
MediaProvider.apk
MarketUpdater.apk
Maps.apk
Mail.odex
Mail.apk
IM.odex
IM.apk
HtcWeatherWallpaper.odex
HtcWeatherWallpaper.apk
HtcTwitter.odex
HtcTwitter.apk
HtcSyncwidget.odex
HtcSyncwidget.apk
HtcStreamPlayer.odex
HtcStreamPlayer.apk
HtcSoundRecorder.odex
HtcSoundRecorder.apk
HtcSettingsProvider.odex
HtcSettingsProvider.apk
HtcRingtoneTrimmer.odex
HtcRingtoneTrimmer.apk
HtcPhotoWidget.odex
HtcPhotoWidget.apk
HtcNaviPanel.odex
HtcNaviPanel.apk
HtcMusic.odex
HtcMusic.apk
HtcMessageUploader.odex
HtcMessageUploader.apk
HtcLog.apk
HtcLockScreen.odex
HtcLockScreen.apk
HtcLocationService.odex
HtcLocationService.apk
HtcLocationPicker.odex
HtcLocationPicker.apk
HtcFootprintsWidget.odex
HtcFootprintsWidget.apk
HtcFootprints.odex
HtcFootprints.apk
HtcFacebook.odex
HtcFacebook.apk
HtcFMRadio.odex
HtcFMRadio.apk
HtcDialer.odex
HtcDialer.apk
HtcContacts.odex
HtcContacts.apk
HtcClockWidget.odex
HtcClockWidget.apk
HtcAddProgramWidget.odex
HtcAddProgramWidget.apk
HTMLViewer.odex
HTMLViewer.apk
HTC_IME.odex
HTC_IME.apk
HTCSetupWizard.odex
HTCSetupWizard.apk
HTCNew.odex
HTCNew.apk
HTCCamera.odex
HTCCamera.apk
HTCAlbum.odex
HTCAlbum.apk
GoogleSubscribedFeedsProvider.apk
GoogleSettingsProvider.apk
GooglePartnerSetup.apk
GoogleContactsSyncAdapter.apk
GoogleCheckin.apk
GoogleApps.apk
GmailProvider.apk
Gmail.apk
GlobalSearch.odex
GlobalSearch.apk
GSD.odex
GSD.apk
Ftp.apk
FriendStream.odex
FriendStream.apk
Flickr.odex
Flickr.apk
FlashPlayer.odex
FlashPlayer.apk
FlashLitePlugin.odex
FlashLitePlugin.apk
FilePicker.odex
FilePicker.apk
FieldTest.apk
Facebook.apk
EnhancedGoogleSearchProvider.apk
DrmProvider.odex
DrmProvider.apk
DownloadProvider.odex
DownloadProvider.apk
DebugTool.apk
DCSUtility.odex
DCSUtility.apk
DCSStock.odex
DCSStock.apk
DCSImpl.odex
DCSImpl.apk
CustomizationSetup.odex
CustomizationSetup.apk
CustomizationSettingsProvider.odex
CustomizationSettingsProvider.apk
ContactsProvider.odex
ContactsProvider.apk
Clicker.odex
Clicker.apk
CheckinProvider.odex
CheckinProvider.apk
CertInstaller.odex
CertInstaller.apk
CalendarProvider.odex
CalendarProvider.apk
Calendar.odex
Calendar.apk
Calculator.odex
Calculator.apk
Browser.odex
Browser.apk
BrcmBluetoothServices.odex
BrcmBluetoothServices.apk
Bluetooth.odex
Bluetooth.apk
ApplicationsProvider.odex
ApplicationsProvider.apk
AccountSyncManager.odex
AccountSyncManager.apk
AccountAndSyncSettings.odex
AccountAndSyncSettings.apk
restartapp.odex
restartapp.apk
htcsettingwidgets.odex
htcsettingwidgets.apk
htcsearchwidgets.odex
htcsearchwidgets.apk
htcmsgwidgets.odex
htcmsgwidgets.apk
htcmailwidgets.odex
htcmailwidgets.apk
htccontactwidgets.odex
htccontactwidgets.apk
htccalendarwidgets.odex
htccalendarwidgets.apk
htcbookmarkwidget.odex
htcbookmarkwidget.apk
gtalkservice.apk
com.htc.WeatherWidget.odex
com.htc.WeatherWidget.apk
com.htc.TwitterWidget.odex
com.htc.TwitterWidget.apk
com.htc.StockWidget.odex
com.htc.StockWidget.apk
com.htc.NewsReaderWidget.odex
com.htc.NewsReaderWidget.apk
com.htc.MusicWidget.odex
com.htc.MusicWidget.apk
com.htc.FriendStreamWidget.odex
com.htc.FriendStreamWidget.apk
YouTube.apk
WorldClock.odex
WorldClock.apk
WidgetDownloadManager.odex
WidgetDownloadManager.apk
WeatherSyncProvider.odex
WeatherSyncProvider.apk
WeatherProvider.odex
WeatherProvider.apk
Weather.odex
Weather.apk
VpnServices.odex
VpnServices.apk
VoiceSearch.apk
VoiceDialer.odex
VoiceDialer.apk
Vending.apk
UserDictionaryProvider.odex
UserDictionaryProvider.apk
UploadProvider.odex
UploadProvider.apk
Updater.odex
Updater.apk
TtsService.odex
TtsService.apk
TelephonyProvider.odex
TelephonyProvider.apk
Was able to remove some of AT&T bloatware, but couldn't figure out the .apk file for AT&T Radio. Does anyone know?
friedice said:
Was able to remove some of AT&T bloatware, but couldn't figure out the .apk file for AT&T Radio. Does anyone know?
Click to expand...
Click to collapse
AndroidMusic.apk
Thundervore said:
AndroidMusic.apk
Click to expand...
Click to collapse
Removed it. Thanks.
redapex said:
I was able to remove Stocks, Peep, Footprint, News, the stock Music player and some other stuff... Im in class right now so im trying to pull this off the top of my head and cant try it to verify. I'll post back later tonight when I get home the 100% method but I think this is it.
-boot into recovery
-Mount /system partition
-adb remount
-adb shell
-cd /system/app
***I used -ls to list everything in the folder on my mac, not sure what the command or you windows people would be. But that listed every .apk and .odex file in the /app directory***
-Locate the files you want to remove
- rm what-ever-file-you-want-gone.apk
- rm what-ever-file-you-want-gone.odex
***Then I ran -ls again to verify that the file was no longer listed in the directory***
-Reboot phone and enjoy.
Click to expand...
Click to collapse
Thanks, those directions worked perfectly.
Just a side note, when typing the program you want to remove it IS case-sensitive.
Edit: I notice after removing a few apps that I now have an entry in my widgets menu called 0.0dip and I have no idea where it came from and it instantly crashes if I try to use it. Any insight?

Captivate JI6 (v2.2) Hacks (root, non-market, no start up sound)

One click root - http://forum.xda-developers.com/showthread.php?t=803682
You can use your old update.zip files by kernel swapping.
See here:
http://forum.xda-developers.com/showthread.php?t=797444
#1 - Rooting
su,busybox,sqlite3
Extract RootPack zip file
Browse to contents from cmd/terminal
adb push rageagainstthecage-arm5.bin /data/local/tmp/rageagainstthecage-arm5.bin
adb shell
cd /data/local/tmp
chmod 0755 rageagainstthecage-arm5.bin
./rageagainstthecage-arm5.bin
(wait for you to get kicked from adb)
adb shell
mount -o rw,remount /dev/block/stl9 /system
exit
adb push su /system/bin/su
adb push busybox /system/bin/busybox
adb push sqlite3 /system/bin/sqlite3
adb push superuser.apk /system/app/superuser.apk
adb shell
cd /system/bin
chmod 4755 su
chmod 4755 busybox
chmod 4755 sqlite3
reboot
#2 Non market apps
adb shell
su
cd /dbdata/databases/com.android.providers.settings
sqlite3 settings.db
update secure set value = "1" where name = "install_non_market_apps";
.quit
reboot
#3 no start up sound
adb shell
su
rm /system/etc/PowerOn.wav
#4 remove bloat
adb shell
su
rm /system/app/[file]
values for [file] (take your pick)
Code:
SamsungWidget_FeedAndUpdate.apk
LogsProvider.odex
SnsProvider.apk
Days.apk
ClockPackage.apk
MarketUpdater.apk
Talk.apk
WISPr43_Android22_signed.apk
VoiceRecorder.apk
SamsungWidget_CalendarClock.odex
InputEventApp.odex
SnsAccount.odex
DownloadProvider.apk
Vending.apk
TwWallpaperChooser.apk
MiniDiary.odex
LogsProvider.apk
GoogleQuickSearchBox.apk
Personalization.odex
UNAService.odex
TelephonyProvider.odex
Bluetooth.apk
Divx.odex
SnsProvider.odex
VpnServices.apk
Gallery3D.apk
PhoneSetupWizard.odex
TouchWizCalculator.apk
YPMobile-release_875.apk
BluetoothOPP.odex
SnsAccount.apk
SoundPlayer.apk
VoiceSearch.apk
lcdtest.apk
LbsTestMode.apk
SimDetachNotifier.odex
Phone.apk
VoiceRecorder.odex
Browser.apk
wipereceiver.apk
ApplicationsProvider.odex
DrmUA.odex
CallSetting.apk
install_flash_player.apk
CalendarProvider.apk
bn.ereader.apk
LiveWallpapers.odex
InfoAlarm.odex
BuddiesNow.odex
BluetoothTestMode.apk
Contacts.odex
SetupWizard.apk
DataCreate.odex
JobManager.apk
DualClock.apk
SamsungWidget_ProgramMonitor.apk
PhoneErrService.apk
wssyncmldm.apk
SelfTestMode.odex
YouTube.apk
SamsungWidget_StockClock.apk
FactoryTest.apk
Stk.odex
TATLiveWallpapersBlueSea.apk
MobileVideo.odex
wssyncmlnps.odex
SamsungWidget_FeedAndUpdate.odex
ATT_Radio_Full_En_2.2.16.69695.apk
AxT9IME.apk
TwWallpaperChooser.odex
shutdown.odex
serviceModeApp.odex
serviceModeApp.apk
WriteandGo.apk
MediaUploader.apk
signin.odex
CertInstaller.odex
ScreenCaptureService.apk
CertInstaller.apk
FactoryTest.odex
TATLiveWallpapersDandelion.apk
MobileVideo.apk
LiveWallpapersPicker.apk
Phone.odex
JobManager.odex
ClockPackage.odex
MediaProvider.apk
GoogleFeedback.apk
ContactsProvider.odex
Gmail.apk
VideoPlayer.apk
MobileTrackerEngineTwo.odex
PackageInstaller.odex
MediaHub.apk
DualClock.odex
SisoDrmProvider.odex
DialerTabActivity.apk
CameraFirmware.odex
LbsTestMode.odex
AccountAndSyncSettings.odex
MiniDiary.apk
Stk.apk
HTMLViewer.apk
GoogleBackupTransport.apk
MtpApplication.apk
DrmUA.apk
VpnServices.odex
MobileBanking.apk
BluetoothServices.apk
WlanTest.apk
BluetoothTestMode.odex
Browser.odex
TouchWizCalculator.odex
MusicPlayer.odex
TtsService.odex
MagicSmokeWallpapers.apk
GooglePartnerSetup.apk
UserDictionaryProvider.odex
DownloadProvider.odex
TATLiveWallpapersBlueSea.odex
SamsungWidget_ProgramMonitor.odex
WriteandGo.odex
MtpApplication.odex
Divx.apk
UserDictionaryProvider.apk
BuddiesNow.apk
wssyncmlnps.apk
ScreenCaptureService.odex
SimDetachNotifier.apk
CameraFirmware.apk
wssyncmlds.apk
SelfTestMode.apk
NetworkLocation.apk
Email.odex
SamsungWidget_CalendarClock.apk
NetworkLocation.odex
ATTNav-Samsung-Vega-1516.apk
androidlauncher2.1-61x612010_06_11t15_49.apk
TtsService.apk
Personalization.apk
CalendarProvider.odex
Kepler
BadgeProvider.apk
shutdown.apk
DialerTabActivity.odex
InfoAlarm.apk
CSC.apk
SecDownloadProvider.apk
Settings.apk
MediaProvider.odex
SoundPlayer.odex
MobiTV_800x480_320_20100610_1.0.0.15-118829.apk
TouchWiz30Launcher.odex
PhoneSetupWizard.apk
DefaultContainerService.apk
TouchWizCalendar.apk
SamsungWidget_StockClock.odex
signin.apk
SettingsProvider.odex
BadgeProvider.odex
TATLiveWallpapersDandelion.odex
VideoPlayer.odex
Dlna.apk
BluetoothOPP.apk
TAT_LiveWallpaper_Beach.apk
lcdtest.odex
Phone_Util.apk
UNAService.apk
GoogleServicesFramework.apk
Email.apk
BluetoothServices.odex
MusicPlayer.apk
HTMLViewer.odex
MyFiles.odex
attmaps20-1112.apk
TouchWiz30Launcher.apk
TATLiveWallpapersLuminescence.odex
wssyncmldm.odex
Preconfig.odex
Memo.apk
Mms.odex
Settings.odex
CSC.odex
PhoneErrService.odex
InputEventApp.apk
Camera.apk
MyFiles.apk
Memo.odex
WlanTest.odex
ContactsProvider.apk
ApplicationsProvider.apk
Phone_Util.odex
SecDownloadProvider.odex
AccountAndSyncSettings.apk
DataCreate.apk
ATT-P11_PROD.apk
Street.apk
VisualizationWallpapers.odex
Camera.odex
Gallery3D.odex
GoogleBackupTransport.odex
Contacts.apk
LiveWallpapers.apk
Quickoffice.apk
GoogleCalendarSyncAdapter.apk
SettingsProvider.apk
IM-Signed.apk
PackageInstaller.apk
DefaultContainerService.odex
SisoDrmProvider.apk
wipereceiver.odex
TouchWizCalendar.odex
GoogleContactsSyncAdapter.apk
Bluetooth.odex
wssyncmlds.odex
AxT9IME.odex
Swype.apk
TATLiveWallpapersAurora.odex
CallSetting.odex
Mms.apk
Days.odex
MobileTrackerUI.apk
TATLiveWallpapersAurora.apk
PicoTts.apk
TATLiveWallpapersLuminescence.apk
MobileTrackerEngineTwo.apk
Dlna.odex
MagicSmokeWallpapers.odex
PicoTts.odex
LiveWallpapersPicker.odex
MobileTrackerUI.odex
VisualizationWallpapers.apk
Preconfig.apk
Maps.apk
TelephonyProvider.apk
WHERE_Samsung_GT-I900_Vegas_EN_1.9.3_GM_06112010.apk
Rooting
designgears said:
Originally Posted by eugene373 View Post
1) get RageAgainstTheCage from here stealth.openwall.net/xSports/RageAgainstTheCage.tgz and unzip
it
2) Get su, busybox, Superuser.apk
3) adb push rageagainstthecage-arm5.bin /data/local
4) adb shell (now you will see the $ prompt)
4.1) type "chmod 0755 /data/local/rageagainstthecage-arm5.bin" (without quotes)
5) type "/data/local/rageagainstthecage-arm5.bin" (without quotes) in adb shell
5) wait till adb shell closes
6) adb shell again, and now you should have # (i.e. adb root shell)
7) type "mount -o rw,remount /dev/block/stl9 /system" without quotes in adb rootshell to mount system as rw
8) exit adb rootshell
9) push su and busybox to /system/bin using "adb push <path to su>/su /system/bin/su" AND "adb push <path to busybox>/busybox /system/bin/busybox"
10) push Superuser.apk to /system/app using "adb push <path to Superuser apk>/Superuser.apk /system/app"
11) adb shell
12) you will be back at the # shell
13) cd /system/bin
14) chmod 4755 su
15) chmod 4755 busybox
16) reboot your device
This is what I did to Root it..
Original Guide is here.. They need to correct Permission.. http://www.ithinkdiff.com/how-to-roo...scinate-guide/
Click to expand...
Click to collapse
THANK YOU!, we have been smacking this thing around for a good two hours trying to make it comply!!
Click to expand...
Click to collapse
You guys waste to much time
jesus i love you
eugene373 said:
You guys waste to much time
Click to expand...
Click to collapse
eugene is the MAN....looks like you got a lot more going in the vibrant section tho! wish you were rockin the captivate full time
eugene373 said:
You guys waste to much time
Click to expand...
Click to collapse
That thread was ridiculously cluttered. I know we'll see an SRE super soon, or a Cognition 2.2
CLShortFuse said:
writing...
browse to the extracted folder
adb push rageagainstthecage-arm5.bin /data/local/tmp/rageagainstthecage-arm5.bin
adb shell
cd /data/local/tmp
chmod 0755 rageagainstthecage-arm5.bin
./rageagainstthecage-arm5.bin
(wait for you to get kicked from adb)
adb shell
mount -o rw,remount /dev/block/stl9 /system
exit
adb push su /system/bin/su
adb push busybox /system/bin/busybox
adb push sqlite3 /system/bin/sqlite3
adb push superuser.apk /system/app/superuser.apk
adb shell
cd /system/bin
chmod 4755 su
chmod 4755 busybox
chmod 4755 sqlite3
(enable non-market apps)
cd /data/databases/com.android.providers.settings
sqlite3 settings.db
update secure set value = "1" where name = "install_non_market_apps";
.quit
reboot
Click to expand...
Click to collapse
Will this work as an update zip for rooting yet?
sent from my badass Captivate that is a Cognition running machine. Anxiously awaiting a Froyo Cognition.
eugene373 said:
You guys waste to much time
Click to expand...
Click to collapse
I agree. Two hours? What took ya so damn long?!
Just kidding, great work guys, just absolutely amazing.
Rhiannon224 said:
Will this work as an update zip for rooting yet?
sent from my badass Captivate that is a Cognition running machine. Anxiously awaiting a Froyo Cognition.
Click to expand...
Click to collapse
No this will not work for Updated.zip..
However I point out in the Original 2.2 thread to grab my 2.2 Rom.zip
Remove everything but the recovery file in the bin & leave xbin untouched as well... This will give you guys back the 2e recovery & still let you flash from the recovery / ClockworkMod..
CLShortFuse said:
That thread was ridiculously cluttered. I know we'll see an SRE super soon, or a Cognition 2.2
Click to expand...
Click to collapse
Yeah I kept posting stuff and trying to Direct people to it & help and I hit F5 and my Post was like 3 pages back??? Oh well, at least you guys are Rocking 2.2 & Root... More than T-Mobile
eugene373 said:
No this will not work for Updated.zip..
However I point out in the Original 2.2 thread to grab my 2.2 Rom.zip
Remove everything but the recovery file in the bin & leave xbin untouched as well... This will give you guys back the 2e recovery & still let you flash from the recovery / ClockworkMod..
Click to expand...
Click to collapse
Can I get a quick link to it?
ronaldramsayii said:
Can I get a quick link to it?
Click to expand...
Click to collapse
np.. Hold up..
http://forum.xda-developers.com/showthread.php?t=788784
alright, i'm done playing around. i'ma go sleep. this is for people to can't wait for a Cognition 2.2 rom and want root NAO! (like me ^_^)
Make Sure to dd the new zImage & add that into the build. the Modem.bin should be fine if it has one.. We have HSPA
I wanna sleep too, but not until I get sideloading enabled.
It just keeps *****ing at me:
# cd data/databases/com.android.providers.settings
cd data/databases/com.android.providers.settings
cd: can't cd to data/databases/com.android.providers.settings
miztaken1312 said:
I wanna sleep too, but not until I get sideloading enabled.
It just keeps *****ing at me:
# cd data/databases/com.android.providers.settings
cd data/databases/com.android.providers.settings
cd: can't cd to data/databases/com.android.providers.settings
Click to expand...
Click to collapse
fixed
cd /dbdata/...
CLShortFuse said:
fixed
cd /dbdata/...
Click to expand...
Click to collapse
Oh thank you, thank you, thank you. Trying it now.
eugene373 said:
Yeah I kept posting stuff and trying to Direct people to it & help and I hit F5 and my Post was like 3 pages back??? Oh well, at least you guys are Rocking 2.2 & Root... More than T-Mobile
Click to expand...
Click to collapse
But at least you guys have that sweet FFC mod.
miztaken1312 said:
Oh thank you, thank you, thank you. Trying it now.
Click to expand...
Click to collapse
It worked! Thank you ShortFuse!!!
darkfalz said:
But at least you guys have that sweet FFC mod.
Click to expand...
Click to collapse
Very very true.... I can wait for Kernel source to keep the FFC
eugene373 said:
Very very true.... I can wait for Kernel source to keep the FFC
Click to expand...
Click to collapse
I will buy you a pygmy goat if you can get me a FFC on the Captivate.

[REF] Stock Firmwares for Samsung Galaxy S I9000 series - Changelists

After seeing so many posts asking about what changed between firmware versions, and inspired by BogdanSNB's thread in which he generously provides download links for many stock firmwares, here's my list of file changes for some of them.
Please start a new thread to discuss the changes, please use this thread for changelist requests only!
I've made the changelists with a small shell script which you can discuss and download in this thread in the Development section.
I will try to keep the changelist between the two most recent firmwares on top, followed by the list of changelists available.
You can download all the changelists and diffs here.
Code:
Changes between I9000XWJPI and I9000XWJS3:
===[Build info]===
--- I9000XWJPI/system/build.prop 2010-12-11 13:17:16.000000000 +0100
+++ I9000XWJS3/system/build.prop 2011-01-05 15:33:28.000000000 +0100
@@ -5 +5 @@
-ro.build.version.incremental=XWJPI
+ro.build.version.incremental=XWJS3
@@ -8,3 +8,3 @@
-ro.build.version.release=2.2
-ro.build.date=2010. 12. 11. (토) 12:47:11 CET
-ro.build.date.utc=1292068031
+ro.build.version.release=2.2.1
+ro.build.date=2011. 01. 05. (수) 15:13:40 KST
+ro.build.date.utc=1294208020
@@ -13 +13 @@
-ro.build.host=ursti-desktop
+ro.build.host=SE-S608
@@ -30,2 +30,2 @@
-ro.build.description=GT-I9000-user 2.2 FROYO XWJPI release-keys
-ro.build.fingerprint=samsung/GT-I9000/GT-I9000/GT-I9000:2.2/FROYO/XWJPI:user/release-keys
+ro.build.description=GT-I9000-user 2.2.1 FROYO XWJS3 release-keys
+ro.build.fingerprint=samsung/GT-I9000/GT-I9000/GT-I9000:2.2.1/FROYO/XWJS3:user/release-keys
@@ -33,3 +33,3 @@
-ro.build.PDA=I9000XWJPI
-ro.build.hidden_ver=I9000XWJPI
-ro.build.changelist=771309
+ro.build.PDA=I9000XWJS3
+ro.build.hidden_ver=I9000XWJS3
+ro.build.changelist=830616
@@ -67 +67 @@
-ro.config.notification_sound=20_Cloud.ogg
+ro.config.notification_sound=01_Sherbet.ogg
--- I9000XWJPI/system/default.prop 2010-12-11 13:17:16.000000000 +0100
+++ I9000XWJS3/system/default.prop 2011-01-05 15:33:28.000000000 +0100
@@ -10 +10 @@
-ro.com.google.gmsversion=2.2_r7
+ro.com.google.gmsversion=2.2_r8
===[File changes]===
In /system:
Modified:
build.prop default.prop
In /system/app:
Added:
BluetoothPBAP.apk SecurityProvider.apk
Deleted:
TAT_LiveWallpaper_Beach.apk
Modified:
AccountAndSyncSettings.apk ApplicationsProvider.apk
AxT9IME.apk BadgeProvider.apk Bluetooth.apk BluetoothOPP.apk
BluetoothServices.apk BluetoothTestMode.apk Browser.apk
BuddiesNow.apk CSC.apk CalendarProvider.apk CallSetting.apk
Camera.apk CameraFirmware.apk CertInstaller.apk ChocoEUKor.apk
ClockPackage.apk Contacts.apk ContactsProvider.apk CoolEUKor.apk
DataCreate.apk Days.apk DefaultContainerService.apk
DialerTabActivity.apk Divx.apk Dlna.apk DownloadProvider.apk
DrmUA.apk DualClock.apk Email.apk FMRadio.apk FactoryTest.apk
Gallery3D.apk GoogleBackupTransport.apk HTMLViewer.apk
InfoAlarm.apk InputEventApp.apk JobManager.apk Layar-samsung.apk
LbsTestMode.apk LiveWallpapers.apk LiveWallpapersPicker.apk
LogsProvider.apk MagicSmokeWallpapers.apk MediaProvider.apk Memo.apk
MiniDiary.apk Mms.apk MobileTrackerEngineTwo.apk MobileTrackerUI.apk
MtpApplication.apk MusicPlayer.apk MyFiles.apk NetworkLocation.apk
OtaProvisioningService.apk PackageInstaller.apk Personalization.apk
Phone.apk PhoneErrService.apk PhoneSetupWizard.apk Phone_Util.apk
PicoTts.apk Preconfig.apk PressReader.apk Protips.apk
RoseEUKor.apk SamsungApps.apk SamsungWidget_CalendarClock.apk
SamsungWidget_FeedAndUpdate.apk SamsungWidget_ProgramMonitor.apk
SamsungWidget_StockClock.apk ScreenCaptureService.apk
SecDownloadProvider.apk SelfTestMode.apk Settings.apk
SettingsProvider.apk SimDetachNotifier.apk SisoDrmProvider.apk
SnsAccount.apk SnsProvider.apk SoundPlayer.apk Stk.apk Swype.apk
TATLiveWallpapersAurora.apk TATLiveWallpapersBlueSea.apk
TelephonyProvider.apk TouchWiz30Launcher.apk TouchWizCalculator.apk
TouchWizCalendar.apk TtsService.apk TwWallpaperChooser.apk
UNAService.apk UnifiedInbox.apk UserDictionaryProvider.apk
VideoPlayer.apk VisualizationWallpapers.apk VoiceDialer.apk
VoiceRecorder.apk VpnServices.apk WlanTest.apk WriteandGo.apk
lcdtest.apk serviceModeApp.apk shutdown.apk signin.apk syncmldm.apk
syncmlds.apk thinkdroid.apk wipereceiver.apk wssomacp.apk
wssyncmlnps.apk
In /system/bin:
Modified:
app_process btld cat chmod chown cmp csview date dd debuggerd
df dmesg dnsmasq drexe dumpmesg fsck_msdos getevent getprop
hd id ifconfig iftop immvibed insmod ioctl ionice kill
libemoji_docomo_test ln log ls lsmod mkdir mount mv nandread netstat
newfs_msdos notify npsmobex printenv ps reboot recovery renice rm
rmdir rmmod route schedtop sendevent setconsole setprop sleep smd
start stop sync system_server top tvoutserver umount vmstat vold
watchprops wipe wlservice wpa_supplicant
In /system/etc:
Modified:
NOTICE.html.gz apns-conf.xml asound.conf cursorwindowpackages.txt
event-log-tags jupiter.xml purenandpackages.txt
purenandpackages_pref.txt vold.fstab
In /system/etc/permissions:
Deleted:
android.hardware.camera.xml
In /system/etc/security:
Modified:
otacerts.zip
In /system/etc/wifi:
Modified:
bcm4329_aps.bin bcm4329_sta.bin wpa_supplicant.conf
In /system/fonts:
Added:
DroidSans_Subset.ttf
Modified:
DroidSansFallback.ttf
In /system/framework:
Modified:
am.jar android.policy.jar android.test.runner.jar bmgr.jar
com.samsung.device.jar core.jar ext.jar framework-res.apk
framework-tests.jar framework.jar ime.jar input.jar javax.obex.jar
monkey.jar pm.jar sec_feature.jar seccamera.jar sechardware.jar
services.jar svc.jar twframework-res.apk twframework.jar
In /system/lib:
Added:
libarcsoft_subtitle.so liblwfa-0.A.2-mng-p4.so
libomx_avcdec_sharedlibrary.so libomx_avcenc_sharedlibrary.so
libomx_m4vdec_sharedlibrary.so libomx_m4venc_sharedlibrary.so
Deleted:
libcamerafirmwarejniforuna.so liblwfa-0.A.2-mng-p3.so
Modified:
libImmVibeJ.so libRS.so libXt9core.so libandroid_runtime.so
libaudio.so libaudioflinger.so libaudiopolicy.so
libbluetoothd.so libcamera.so libcamerafirmwarejni.so
libdbus.so libdhwr.so libdivx_jni.so libdivxdrm.so
libdrm2_jni.so libdvm.so libemoji_docomo.so libfmradio_jni.so
libgps.so libhardware_legacy.so libicudata.so libmedia.so
libmedia_jni.so libmediaplayerservice.so libmtp.so libmtp_jni.so
libnativehelper.so libomx_sharedlibrary.so libopencore_author.so
libopencore_common.so libopencore_player.so libopencore_rtsp.so
libquramimagecodec.so libril.so libsamsungr2vs.so libsavidocn.so
libsavscmn.so libsavsff.so libsec-ril.so libsecgps.so libsisodrm.so
libskia.so libsmp3domxoc.so libsonivox.so libsqlite.so libssl.so
libstagefright.so libstagefright_color_conversion.so libsthmb.so
libsurfaceflinger.so libsurfaceflinger_client.so libswmadomxoc.so
libswmfdocn.so libvtstack.so libwebcore.so libwlandut.so
libwmlscriptcore.so
In /system/lib/hw:
Modified:
copybit.s5pc110.so
In /system/usr/keychars:
Added:
qt602240_ts_input.kcm.bin
In /system/usr/keylayout:
Added:
qt602240_ts_input.kl
List of available changelists:
I9000XWJF7-I9000XWJFB.txt
I9000XWJFB-I9000XWJFD.txt
I9000XWJFD-I9000XWJM2.txt
I9000XWJM2-I9000XWJM5.txt
I9000XWJM5-I9000XWJM6.txt
I9000XWJM6-I9000XWJM7.txt
I9000XWJM7-I9000XWJM8.txt
I9000XWJM8-I9000XWJM9.txt
I9000XWJM9-I9000XWJPA.txt
I9000XWJPA-I9000XWJPB.txt
I9000XWJPB-I9000XWJPI.txt
I9000XWJPI-I9000XWJS3.txt
I9000XXJF3-I9000XXJP1.txt
I9000XXJP1-I9000XXJP2.txt
I9000XXJP2-I9000XXJP3.txt
I9000XXJP3-I9000XXJPC.txt
I9000XXJPC-I9000XXJPH.txt
I9000XXJPH-I9000XXJPK.txt
I9000XXJPK-I9000XXJPM.txt
I9000XXJPM-I9000XXJPO.txt
I9000XXJPO-I9000XXJPU.txt
I9000XXJPU-I9000XXJPX.txt
I9000XXJPX-I9000XXJPY.txt

[Q] How to extract IMG file used by NVFlash?

Hello,
I've some problems with my 3G Mobile Network in Settings (appeared/disappeared) so i would like to compare file between the NVFlash version of Prime v1.5 and the Clockworld version.
I've tried to open/extract the 2 IMG files from the NVFlash version but any of my apps can open/extract...
Is there a way/app?
Regards,
Kasi
Which files? The boot and the recovery are magic Android! files and you can unpack them with these tools https://github.com/AndroidRoot/BootTools
But once you unpack them, there isn't much there in terms of 3G settings.
I think you want the system.img, which is a ext4 archive and can be mounted directly to your directory structure, provided it supports ext4 files. Linux supports it!
fill in the [blanks]
Code:
mount -o loop -t ext4 [system.img] [/mount_directory]
Is this what you are looking for? This is the app folder of the system.img that came with the nvflash root method. It's probably prime 1.4?
Code:
ApplicationsProvider.apk
AsusReader.apk
AsusSetupWizard.apk
AWS.apk
Bluetooth.apk
BooksTablet.apk
Browser.apk
Calculator.apk
Calendar.apk
CalendarProvider.apk
Camera.apk
CertInstaller.apk
ChromeBookmarksSyncAdapter.apk
CifsManager.apk
CMClient.apk
Contacts.apk
ContactsProvider.apk
DefaultContainerService.apk
DeskClock.apk
DLNA.apk
DMClient.apk
DownloadProvider.apk
DownloadProviderUi.apk
DrmProvider.apk
Email.apk
EmailWidget.apk
Exchange.apk
FacebookPoster.apk
FileManager.apk
Finsky.apk
GalleryNew3DGoogle.apk
Gmail.apk
GoogleBackupTransport.apk
GoogleCalendarSyncAdapter.apk
GoogleContactsSyncAdapter.apk
GoogleFeedback.apk
GoogleLoginService.apk
GooglePartnerSetup.apk
GoogleQuickSearchBox.apk
GoogleServicesFramework.apk
HoloSpiralWallpaper.apk
HTMLViewer.apk
Keyboard.apk
Kindle-OEM.apk
LatinImeGoogle.apk
Launcher2.apk
Layar.apk
LiveWallpapersPicker.apk
Maps.apk
MarketUpdater.apk
MEar.apk
MediaProvider.apk
MediaUploader.apk
Music2.apk
MyCloud.apk
MyGazine.apk
MyWater.apk
NetworkLocation.apk
OneTimeInitializer.apk
PackageInstaller.apk
PCSyncLauncher.apk
Phone.apk
PicoTts.apk
PixWe.apk
PolarisOffice.apk
PRAndroid.apk
Screenshot.apk
Settings.apk
SettingsProvider.apk
SetupWizard.apk
SoundRecorder.apk
SpareParts.apk
StrAsus.apk
Street.apk
Superuser.apk
SystemUI.apk
Talk.apk
TelephonyProvider.apk
TtsService.apk
UpdateLauncher.apk
UserDictionaryProvider.apk
Vending.apk
Vibe2.apk
VideoEditorGoogle.apk
VoiceSearch.apk
Weather.apk
XT9IME.apk
YouTubeTablet.apk
ZinioReader.apk
ZinioSettingsProvider.apk
Indeed. I think I couldn't find what I want.
where is this fu*** option? grrr
thank you again for your reply.

Categories

Resources