Related
I originally tried the Fascinate on Verizon and for some reason I just liked the Daily Briefing App (many here do). So after doing some searching here and there, I figured it out. This is de-0dexed APK from the Captivate dump:
http://www.megaupload.com/?d=1L8GHQQG
from this thread: http://forum.xda-developers.com/showpost.php?p=9277432&postcount=9
The file is called InfoAlarm.apk and is under /system/app in the ZIP, I also
ATTACHED it to this thread.
Of course you have to be rooted. Simply copy the APK to your SDcard then use Root Explorer (supposedly Droid explorer works) to move the APK to
/system/app folder. Reboot the phone. No need to change permissions.
Then simply add the widget under Samsung Widgets
Hi, I had beautiful widgets installed and it was not findeing the location automatically, I had to put the zipcode or the city. Now I copied the networklocation.apk from my phone to the kindle's in the system app folder and now it is finding it by geolocation.
Sent from my Kindle Fire using xda premium
I gave this a shot with nogo... CityID it pulls up with is jibberish and non-locational to where I am at.
Just so you know what I did...
o Copied com.google.androidlocation.apk to /system/app
o Rebooted the device
o Used BeautifyWidgets, selected Weather Widget Setting
o Selected Set Location
o Clicked Geolocation
Errors said Geolocation was not on
o told it to use it anyway
o Saved the settings.
krelvinaz said:
I gave this a shot with nogo... CityID it pulls up with is jibberish and non-locational to where I am at.
Just so you know what I did...
o Copied com.google.androidlocation.apk to /system/app
o Rebooted the device
o Used BeautifyWidgets, selected Weather Widget Setting
o Selected Set Location
o Clicked Geolocation
Errors said Geolocation was not on
o told it to use it anyway
o Saved the settings.
Click to expand...
Click to collapse
When you copy the app in the settings l, long press the app and choose permissiones and you must have it setup like the pic
Sent from my Kindle Fire using xda premium
Will this work with Google Maps as well?
EDIT: Yup, I am now finding my location in Google Maps as well. Saaweeet!
Used the same permissions as everything else in the /system/app directory
0644
Well my location is working I don't know why yours doesn't .
samomamo said:
Well my location is working I don't know why yours doesn't .
Click to expand...
Click to collapse
Samomamo, where did you get the NetworkLocation.apk package from, also did you have to adjust anything in Settings.db for any network settings?
I am completely stumped and have been scouring through myriads of posts for some shred of helpful info, so far this post and this one:
http://forum.xda-developers.com/showthread.php?t=1362472
but have had no luck with either one. I am wondering if the answer lies in from where you got your NetworkLocation.apk. Any help would great! Thanks!
I got the apk from my T-Mobile Galaxy s2
Sent from my SGH-T989 using xda premium
I downloaded the networklocation apk from the CM7 gapps. The followed the directions and it is now showing my location. I believe it will only show my location if connected to wifi though.
Gapps is found here : goo-inside.me/gapps/
Solved issue by adding files and editing framework-res.apk
If anyone searching is interested in how I was able to solve this I could not simply add the Google Network Location APK, I had to force the Amazon "framework-res.apk" file to recognize it by editing the '/res/values/strings.xml' with the following lines:
Same ol' disclaimers - I'm not responsible for whatever you do with this info, if you brick your device, its your decision to try and not my fault or issue to fix. This is nothing new I just put the various pieces together from research through other posts, forums, etc. so credit where credit is due.
irishmyles003 and samomamo thank you very much for your input. Though I wish your solutions would have worked I am glad I had this challenge as I think I taught myself a little more about how to mess around and tweak the system a bit.
I still added the NetworkLocation.APK as stated and explained by Samomamo, but I had the do the following steps in order to get the framework to actually react to network location requests, since it kept returning "null".
<<Original>>
Code:
<string name="config_networkLocationProvider">@null</string>
<string name="config_geocodeProvider">@null</string>
<<Modded>>
Code:
<string name="config_networkLocationProvider">com.google.android.location.NetworkLocationProvider</string>
<string name="config_geocodeProvider">com.google.android.location.GeocodeProvider</string>
Steps:
Use ApkTool to pull "framework-res.apk" and decompile
Replace the lines above to match the modded section
Recompile the APK to "unsignedframework-res.apk"
Copy and rename original "framework-res.apK" -> "originalframework-res.apk" (put this file aside in case you need to flash if you make a mistake)
Rename the original and newly compiled files to .zip (so you can extract, edit, etc)
- "framework-res.apk" -> "framework-res.zip"
- "unsignedframework-res.apk" -> "unsignedframework-res.zip"
Extract "resources.arsc" from unsigned and paste (and overwrite) to the "framework-res.zip" file
Rename "framework-res.zip" -> "framework-res.apk"
Push "framework-res.apk" to device (need to mount /system r/w)
chmod 644 (i.e. <rw, r, r> for root explorer)
Reboot and voila it worked (for me at least)!
Sources / Props to the authors of these links:
I could not give correct props because I got these from outside links, but [email protected] and the Enable CRT Animation guide at freeyourandroid.com and the APKtool tutorial at miui-au.com
Also if you google using the info above you will find you can also enable the AOSP GB CRT Animation by editing a line in the bools.xml, I tried this and it works! Enjoy!.
EDIT: After applying the framework-res.apk and rebooting I just realized that my accounts were lost. I just had to re-add them via SyncSettings (Market: com.francesandmarky.android.syncsettings) - Amazon, Gmail, and Facebook.
rpw128 said:
If anyone searching is interested in how I was able to solve this I could not simply add the Google Network Location APK, I had to force the Amazon "framework-res.apk" file to recognize it by editing the '/res/values/strings.xml' with the following lines:
Same ol' disclaimers - I'm not responsible for whatever you do with this info, if you brick your device, its your decision to try and not my fault or issue to fix. This is nothing new I just put the various pieces together from research through other posts, forums, etc. so credit where credit is due.
irishmyles003 and samomamo thank you very much for your input. Though I wish your solutions would have worked I am glad I had this challenge as I think I taught myself a little more about how to mess around and tweak the system a bit.
I still added the NetworkLocation.APK as stated and explained by Samomamo, but I had the do the following steps in order to get the framework to actually react to network location requests, since it kept returning "null".
<<Original>>
Code:
<string name="config_networkLocationProvider">@null</string>
<string name="config_geocodeProvider">@null</string>
<<Modded>>
Code:
<string name="config_networkLocationProvider">com.google.android.location.NetworkLocationProvider</string>
<string name="config_geocodeProvider">com.google.android.location.GeocodeProvider</string>
Steps:
Use ApkTool to pull "framework-res.apk" and decompile
Replace the lines above to match the modded section
Recompile the APK to "unsignedframework-res.apk"
Copy and rename original "framework-res.apK" -> "originalframework-res.apk" (put this file aside in case you need to flash if you make a mistake)
Rename the original and newly compiled files to .zip (so you can extract, edit, etc)
- "framework-res.apk" -> "framework-res.zip"
- "unsignedframework-res.apk" -> "unsignedframework-res.zip"
Extract "resources.arsc" from unsigned and paste (and overwrite) to the "framework-res.zip" file
Rename "framework-res.zip" -> "framework-res.apk"
Push "framework-res.apk" to device (need to mount /system r/w)
chmod 644 (i.e. <rw, r, r> for root explorer)
Reboot and voila it worked (for me at least)!
Sources / Props to the authors of these links:
I could not give correct props because I got these from outside links, but [email protected] and the Enable CRT Animation guide at freeyourandroid.com and the APKtool tutorial at miui-au.com
Also if you google using the info above you will find you can also enable the AOSP GB CRT Animation by editing a line in the bools.xml, I tried this and it works! Enjoy!.
EDIT: After applying the framework-res.apk and rebooting I just realized that my accounts were lost. I just had to re-add them via SyncSettings (Market: com.francesandmarky.android.syncsettings) - Amazon, Gmail, and Facebook.
Click to expand...
Click to collapse
Could someone post the modified framework-res.apk?
Why does it work for some but not others?
andTab, I tried but the max filesize is 8 mb for APK files, the framework-res.apk is 27-31 mb. I couldn't figure out why the original posters were able to do it by just adding the files. When I unpacked the APK it was intentionally set to null not allowing usage of the google location framework.
xxx.multiupload.com/5FJ4ZTH6TX (take out the x's, it wouldn't let me post the address b/c I am new)
Thanks for your work guys...
I downloaded and applied this frame work apk, the crt animation is now enabled, but google maps still not finding my location in the middle of Los Angeles.
Hmmmm
You still need NetworkLocation.Apk from Gapps put into /System/App (also run it from your SD Card), then reboot. The adjusted lines in the Framework-Res points to this framework.
So my evo 3d is running ICS, can I still use the file? Or could someone post a working one?
atomiclama said:
So my evo 3d is running ICS, can I still use the file? Or could someone post a working one?
Click to expand...
Click to collapse
irishmyles003 said:
I downloaded the networklocation apk from the CM7 gapps. The followed the directions and it is now showing my location. I believe it will only show my location if connected to wifi though.
Gapps is found here : goo-inside.me/gapps/
Click to expand...
Click to collapse
I'm not too sure, if you're working off stock the Kindle Fire uses 2.3.4 so I would use the 8/28 version from the website irishmyles003 provided.
Hmm still not having a whole lot of luck.
I downloaded the networklocations apk from gaps of the correct date. Also installed the updated framework. Like I said Im seeing CRT change.
I've set up the geo location through beautiful widgets.. but still not finding location.
What am I missing?
thanks
also when I placed the network locations apk I set correct permission and tried to install it, it said application not installed. Could to be part of the problem?
atomiclama said:
also when I placed the network locations apk I set correct permission and tried to install it, it said application not installed. Could to be part of the problem?
Click to expand...
Click to collapse
Placing it in the /system/app area is installing it.
Make sure you reboot for the system to see it though.
Note: I've not tried this patch...
I'm not exactly sure why it isn't working for you. I spent a few days looking at logcat's and forums. Don't forget to change the permissions (mentioned earlier in this thread) to 644.
Hi everybody,
I use the BCM CM9 2.2U2, and I want to mod the Mms.apk to override the SMS to MMS conversion after 4 texts.
Here is what I did:
- I used Apk-Multi Tool to decompile the Mms.apk.
- I modify /res/xml/mms_config.xml (to be precise, I replace the line "<int name="smsToMmsTextThreshold">4</int>" by "<int name="smsToMmsTextThreshold">100</int>")
- I recompile the apk, answering "y" to both questions and being careful with what Apk Multi Tool told me (basically, I deleted the files I needed to delete in the "keep" folder, ie. mms_config.xml and something.armsc-or-something-like that)
- I push the modded apk to my phone
But unfortunately, after I did that, I could not see the Mms.apk in the app drawer. I checked the permissions and the owner and they were correct (or at least, the same as the working Mms.apk).
I attached the original Mms.apk I'm trying to mod, and the actual modded Mms.apk (which does not work).?
Does somebody have an idea of what's gone wrong?
Thank you in advance!
FrancisFuku said:
Hi everybody,
I use the BCM CM9 2.2U2, and I want to mod the Mms.apk to override the SMS to MMS conversion after 4 texts.
Here is what I did:
- I used Apk-Multi Tool to decompile the Mms.apk.
- I modify /res/xml/mms_config.xml (to be precise, I replace the line "<int name="smsToMmsTextThreshold">4</int>" by "<int name="smsToMmsTextThreshold">100</int>")
- I recompile the apk, answering "y" to both questions and being careful with what Apk Multi Tool told me (basically, I deleted the files I needed to delete in the "keep" folder, ie. mms_config.xml and something.armsc-or-something-like that)
- I push the modded apk to my phone
But unfortunately, after I did that, I could not see the Mms.apk in the app drawer. I checked the permissions and the owner and they were correct (or at least, the same as the working Mms.apk).
I attached the original Mms.apk I'm trying to mod, and the actual modded Mms.apk (which does not work).?
Does somebody have an idea of what's gone wrong?
Thank you in advance!
Click to expand...
Click to collapse
I have the exact same problem! Did you find any solution?
I gave up but I've found a Mms.apk (from the latest CM9 source) which does include a option to not convert SMS into MMS (you have to change it in the settings of the app). But it is for the HTC One X, so I do not know if it works for other devices. I attach it so you can try.
Thank you
Sent from my HTC Desire CDMA using Tapatalk 2
The problem is that all apps must be signed to run on Android. Once you recompile your apk with apktool, you have to sign it with a release key (and optionally but recommended - run zipalign), before pushing it back to your phone.
The android developers guide has an excellent article on creating a set of release keys and using them to sign your apk (the apk just has to be signed with any key, it doesn't have to match the same key the original ROM authors used).
I just installed my Hero's stock rom.. Android 1.5 with the first version of sense..
I did this with the sole purpose of seeing how it actually ran back then, compared to all the custom roms thats out there.. And i actually think it runs damn well! Its very snappy and it does have the functionality i need.. But most of the apps i use does not support Android 1.5 anymore which is a problem for me..
Is there any way you can "fake" that the android version you are running is maybe 2.1 ? So that i can download the apps i need, or would that not work? I remember that when i had a Tattoo i could fake the resolution of the display, so that more apps would show, and it worked fine actually.
You can try Change model!
If i remember correctly I've a solution:
You need root privileges (and I think you've =)) and a file manager as ES File Explorer.
In ES go to Setting -> Root Option -> Explore as Root and Mount File Sistem
In system folder find and open file build.prop, make a backup and edit the original
Setting, for example:
ro.product model=Nexus S
ro.product manufacturer= Samsung
Save and now you can install all apps...
I don't think it's that simple. Try this:
Reference: http://developer.android.com/guide/appendix/api-levels.html
Tool: http://code.google.com/p/android-apktool/
1 - Put the apk you want to change in the apktool folder and open cmdline.
2 - Run: apktool decode name.apk
3 - Use notepad to edit the AndroidManifest.xml and change the value for 'minSdkVersion':
<uses-sdk android:minSdkVersion="3" /> (3 or whatever version of Android you want your app to be compatible with.)
4 - Build a new apk. eg. apktool b C:\apktool\name name2.apk
Even if the apk installs; some or all features of the app may not work. Also, you will probably need to change the 'AndroidManifest' of any new version or update.
The other option is to find older versions of the app.
Hi guys, I'm giving up on CyanogenMod. It is slimmer but it has more problems on Galaxy Note 10.1. If you have answer concerning the SDCard problem, please reply to my topic there.
Anyway, still I want to trim all those bloatwares from my device, so I did couple of researches, combining articles and tutorials on trimming roms on other devices (Note 1, 2, 3 and some other devices like sony)
The result? So far it's pretty stable and functional. Phone, bluetooth, wifi, sms, video call, stylus pressure sensitivity etc, all working just fine.
I also had several games, emulators and some graphic apps installed and running without any problem. No crashes so far.
I'll report more if there's anything came up. But I'm pretty happy with it now.
Might work on other tab/note variants too. So here it is :
1. Root your stock, using any method you want (I'm using Odin + ClockworkMod + CF-Auto-Root)
2. Use root file explorer of your choice and delete everything (or you can add .old extension if you had doubts, or maybe everyone's favorite, using freeze in Titanium Backup) in system/app EXCEPT THESE :
Code:
mcRegistry
ApplicationsProvider.apk
ApplicationsProvider.odex
BackupRestoreConfirmation.apk
BackupRestoreConfirmation.odex
CertInstaller.apk
CertInstaller.odex
ClipboardSaveService.apk
ClipboardSaveService.odex
DefaultContainerService.apk
DefaultContainerService.odex
DrmProvider.apk
DrmProvider.odex
FFFFFFFF000000000000000000000001.drbin
GoogleLoginService.apk
GoogleServicesFramework.apk
LogsProvider.apk
LogsProvider.odex
MtpApplication.apk
MtpApplication.odex
OmaCP.apk
OmaCP.odex
PackageInstaller.apk
PackageInstaller.odex
PhoneErrService.apk
PhoneErrService.odex
Phonesky.apk
ResourceManager.apk
SecBluetooth.apk
SecBluetooth.odex
SecContacts.apk
SecContacts.odex
SecContactsProvider.apk
SecContactsProvider.odex
SecDownloadProvider.apk
SecDownloadProvider.odex
SecLauncher2.apk
SecLauncher2.odex
SecMediaProvider.apk
SecMediaProvider.odex
SecMms_Tablet.apk
SecMms_Tablet.odex
SecOmaDownloadProvider.apk
SecOmaDownloadProvider.odex
SecPhone.apk
SecPhone.odex
SecSettings.apk
SecSettings.odex
SecSettingsProvider.apk
SecSettingsProvider.odex
SecTelephonyProvider.apk
SecTelephonyProvider.odex
SecurityProvider.apk
SecurityProvider.odex
SecWallpaperChooser.apk
SecWallpaperChooser.odex
SignatureLock.apk
SignatureLock.odex
SPenGesturePad.apk
SPenGesturePad.odex
SurfSetProp.apk
SurfSetProp.odex
SystemUI.apk
SystemUI.odex
TabletJobManager.apk
TabletJobManager.odex
WAPPushManager.apk
WAPPushManager.odex
You can find editable Google Doc spreadsheet here
https://docs.google.com/spreadsheet...NTT0pSaThYWkdYc0pWRF92bkE&usp=drive_web#gid=6
updated with more infos and compared with SGS2 spreadsheet from this thread :
http://www.geekzone.co.nz/forums.asp?forumid=39&topicid=114574&page_no=6
Also, for SGS 3 from this thread
http://forum.xda-developers.com/galaxy-s3/themes-apps/applications-safe-to-remove-t1634624/page28
If you find any similar spreadsheet for other devices (Sony, HTC, or Motorola and probably even chinese handsets), or minimalist custom ROMs, please let me know, so I can do further comparison, and fetching more infos on the apks. Might just as well create a universal list for it. If I get my hands on new handsets, I'll probably do this too.
Note, from my list above, I deleted SamsungIME.apk (the default keyboard) so if you're doing factory reset you won't be able to type anything. I have myself a hardware keyboard to do the intial setups and such. But after that I used SwiftKey for my daily needs.
If you don't have any hardware keyboard at your disposal, leave it. You can delete it after you installed 3rd party keyboard.
I removed camera (SamsungCamera.apk) as well since I didn't use it much on my tablet. You can leave it if you want to, or use third party apps for it.
For the browser, I installed Chrome afterwards, since it have much more features compared to the stock/built in browser.
As for the multimedia player I use MXPlayerPro, fetched from Google Play as well
With this setup, from 345 apks/odexes I'm left with only about 78 apks/odexes. And it feels blazing fast.
that's 267 bloatwares/junks within your device, even if it's not coming from some service provider (OEM)
From 1 gb space used in factory settings to about 200 mb.
Click to expand...
Click to collapse
Couple more extra debloatings
Deleting Extra Junks (credit to : mimmolm (http://forum.xda-developers.com/showpost.php?p=44921616, modified for GT N80XX)
system\etc\kies\
Remove all
system\lib\
libChatOnAMSImageFilterLibs-1.0.2.so
libcrayonphysics.so
libfacelock_jni.so
libfacerecognition.so
libFaceRecognition_JNI.so
libgcomm_jni.so
libgoogle_recognizer_jni_l.so
libINDIAgent.so
libINDIServer.so
liblifevibes_mediashare_hw_jni.so
libmagnet.so
libNodeJS_Android.so
libpaperartist.so
libpatts_engine_jni_api.so
libpolarisofficedump.so
libpolarisoffice_tablet.so
libsnote_P4C.so
libvideochat_jni.so
libVideoHub.so
libWnnJpnDic.so
system\tts\lang_pico\ (remove all files except those where it appears the language that you use)
Example Italian language: Remove everything except it-IT_cm0_sg.bin , it-IT_ta.bin
system\tts\lang_SMT\ (remove all files except those where it appears the language that you use)
Example Italian language: Remove everything except:
smt_it_IT.lng ,
smt_it_IT_f01.am,
smt_it_IT_f01.cfg,
smt_it_IT_f01.dt,
smt_it_IT_f01.qs
system\usr\srec\en-US\
Remove all
system\wakeupdata\sensory\ (remove all files except those where it appears the language that you use)
Example Italian language: Remove everything except it_galaxy_tuned_endsil_cg.raw , nn_it_mfcc_16k_15_big_250_v3_2.raw
Click to expand...
Click to collapse
Bisabling mini app tray (which I never use and often accidentally hit the arrow icon) :
Deleting Mini Apps (credit to : miketoasty http://forum.xda-developers.com/showthread.php?t=1692173)
Basically it just involves deleting these :
Any apps in System/app that has "Mini" in its name (Including minimode-res.apk).
Next remove :
System/framework/minimode.jar
System/framework/minimode.odex
Click to expand...
Click to collapse
Multi Window Icon Removal :
That annoying little button that often covered up other important button below.
Basically it's from this thread
And using heavylildude 1x1 png to remove the included icon here :
http://forum.xda-developers.com/showthread.php?p=43684011
Step by step :
1. Download the JamMasterClay's custom MultiWindow Cascade Icon
2. Find tw_icon_cascade_no_ab_default.png and tw_icon_cascade_no_ab_pressed.png (it's in vrtheme\system\framework\framework-res.apk\res\drawable-mdpi folder within the zip)
3. Update the zip using; replace both files with heavylildude's 1x1 pngs, (tw_icon_cascade_no_ab_default.png and tw_icon_cascade_no_ab_pressed.png) using any zip editor you use (winrar or winzip, any will do).
4. Flash it using ClockWorkMod recovery.
5. ????
6. Profit!
OR
Just use the zip I made for this. It's built using the steps above.
Click to expand...
Click to collapse
PDF/Scribd links :
http://www.scribd.com/doc/208285135/Android-Barebone
http://www.scribd.com/doc/208153382/Debloating-Android
I'm not responsible if you bricked your device. Proceed carefully.
Cheers, enjoy and hope this help.
Thanks for the bloatware list, it's gonna be useful ^^
You're welcome. Be aware the list of the APK above is NOT listing the bloatwares.
Those are the ones you should LEAVE ALONE.
Additional guide :
Adding third party apps as default system app
As noted above, I've removed SamsungIME.apk, which is the default samsung keyboard (which I hated much, with passion) and replaced it with SwiftKey.
What you'll need :
ES File Explorer
Zip tool; could be Winzip or Winrar on PC, or I use ZArchiver for Android
Purchased apps are stored as .asec in /data/app-private. Using ES File Explorer app backup feature, you can save it as .apk and install it like common apps.
Step-by-step instruction :
After you backed up the purchased apps, uninstall the old (google play installed) one.
Open the newly created apk using zip or zarchiver, you'll find "lib" folder.
Copy the content of "lib" folder (usually with .so extension) to system/lib folder in your device.
Set the copied .so file permission to rw-r--r-- (chmod 644 if you use terminal)
Install the apk like usual using apk installer
find the new installed apk in data/app folder and copy it to system/app folder
set the copied .apk file within system/app folder permission to rw-r--r-- (chmod 644)
The app should become system app and will stay within your device even if a factory reset was done.
Tested on SwiftKey, Delver, ES File Explorer, etc. Doesn't work with MXPlayerPro (let me know if you had success with MXPlayerPro)
Click to expand...
Click to collapse
Compiled from this thread :
http://forum.xda-developers.com/showthread.php?t=2115947&page=3
And found from this page :
http://www.addictivetips.com/mobile/how-to-install-any-app-as-system-app-on-android/
Complete and Editable Google Doc file :
https://docs.google.com/spreadsheet...dEszRWNTT0pSaThYWkdYc0pWRF92bkE&usp=drive_web
Aftermath, background processes and battery consume list. Also attached RemoveMultiWindowIcon.zip (flash it using ClockWorkMod if you hate the multiwindow icon).
I installed dropbox and swiftkey, so if you did a factory reset, you'll only left with 2 active background processes at most (excluding SystemUI and Android core, of course)
Also, list of apk/odex updated, with SecTabletAlarmClock_P4NOTE.apk, ContextAwareService.apk, SecDownloadProviderUi.apk removed, along with their odexes. No problem so far.
SecDownloadProviderUi.apk didn't do anything significant. I rebooted after I removed it, downloading google play still working fine and still give me some progress bar on the download.
However, I've lost the "downloads" icon, which means I cannot clean up the logs, and may be cluttered over time.
Edit :
A full day running the super slim tablet :
Running CSR Racing, Delver, Autodesk Sketchbook Pro, TrueSculpt and Google Drive/QuickOffice and tons of other apps without any problem.
MTP detected flawlessly and can send files from my computer through USB without problem.
Wifi internet run without problem, browsing from tablet work marvelously and also mobile data working properly.
Battery obviously last MUCH longer.
Found out that CSC.apk (after first boot/factory reset) and Personalisation.apk (not sure what it does, maybe had something to do with ringtones and wallpapers) are safe to remove. Can anyone confirm this? I've did a full unroot on my device. Well those two are minor, now that you're left with about 40 apks from 170 default apks (78 and 340 if you count the odex files). I think deleting them won't do much now. But just curious, whether they are safe to delete or not.
Also google docs updated
Tested removing these :
BadgeProvider.apk - those badges on the app icon which displayed numbers of received messages/notifications. No crashes removing this.
CSC.apk - Can be removed after first boot. Not sure what it do.
Personalization.apk - said to be safe to remove, and so far it is. Not sure what it do.
NetworkLocation.apk - provide GPS location through Wifi, didn't use GPS on my tablet anyway
Keystring_DFT.apk - contains sets of USSD codes
Keystring_factory.apk - contains sets of USSD codes
Keystring_misc.apk - contains sets of USSD codes
No errors/crashes or anything. Updated first post.
Updated OP, now that I can post links, also added original threads.
Enjoy guys.
stubbe said:
Updated OP, now that I can post links, also added original threads.
Enjoy guys.
Click to expand...
Click to collapse
hi in your scribd document u gave the list of things that can be removed. so as u have explained the functions for those which shouldnt be removed.can u do the same for those to be removed. then it will help us to more customise(for example- i may need bluetooth,camera,gallery,music player,s note app) so can u specify which are those for the app i mentioned.:good::good::good::good:
eragon143 said:
hi in your scribd document u gave the list of things that can be removed. so as u have explained the functions for those which shouldnt be removed.can u do the same for those to be removed. then it will help us to more customise(for example- i may need bluetooth,camera,gallery,music player,s note app) so can u specify which are those for the app i mentioned.:good::good::good::good:
Click to expand...
Click to collapse
Will update the doc. Thanks for the suggestion. Probably I'll compile something like blackviper's sheet.