What MIUI 8.0.3.0.MAGMIDI system apps are necessary for the ROM to work? - Xiaomi Mi 5s Questions & Answers

So I wanted to debloat my MIUI 8.0.3.0.MAGMIDI on MI 5s and removed unnecessary apps like the ones below with NoBloat Free:
Code:
/SYSTEM/APP FOLDER
AnalyticsCore
AntHalService
BasicDreams
BookmarkProvider
BugReport
Chrome
CloudService
DocumentsUI
Drive
Email
fastdormancy
FileManager
Galaxy4
Gmail2
Hangouts
HoloSpiralWallpaper
HTMLViewer
KingSoftCleaner
KSICibaEngine
LatinImeGoogle
LiveWallpapers
LiveWallpapersPicker
Maps
MiDiscover
MiLinkService
MiLivetalk
MiPlay
miui
MiuiVideoPlayer
MiWallpaper
Music2
NfcNci
NFCtestSvc
NoiseField
Notes
PacProcessor
PartnerBookmarksProvider
PaymentService
PhaseBeam
Photos
PhaseBeam
PhotoTable
PrintSpooler
SeempService
StepsProvider
Stk
SystemAdSolution
talkback
TouchAssistant
TranslationService
Videos
Whetstone
xdivert
XiaomiAccount
XiaomiServiceFramework
YouTube
/SYSTEM/DATA-APP FOLDER
Browser
Facebook
klobugreport
Music
/SYSTEM/PRIV-APP FOLDER
Backup
Calendar
CellBroadcastReceiver
CleanMaster
CloudBackup
CNEService
Contatcs
DownloadProviderUi
dpmserviceapp
FindDevice
GoogleFeedback
ims
ManagedProvisioning
MiDrop
Mipub
MiuiGallery
Mms
MusicFX
SecurityCenter
Tag
Velvet
YellowPage
Almost immediately I started to have problem with crashed app windows (strange arabic fonts used for app names) so I turned the device off. The system didn't boot and stayed forever on the Mi logo.
I did a TWRP recovery and it works fine now but I'm still wondering what system app caused this so I can leave it and remove all other.
Anyone tried to debloat MIUI 8 in such scope as mine?

I think you should not delete stuff like AntHalService, velvet, and some others you deleted. If you wanna debloat, those three threads are a good way to get you started: redmi note 3 bloat removal script
save to remove bloatware list
bloatware removal script for mi 5s plus from MIUI.com forum

Use xiaomi.eu custom rom

wurstel said:
I think you should not delete stuff like AntHalService, velvet, and some others you deleted.
Click to expand...
Click to collapse
AntHalService and Velvet are actually quite safe to delete - done it many times without any side effects. I'm wondering about other stuff. Thanks for the links.
alediniz said:
Use xiaomi.eu custom rom
Click to expand...
Click to collapse
Could you elaborate? What's so special about this one in comparison to global MIUI 8.0.3.0.MAGMIDI?

Rejerf said:
Could you elaborate? What's so special about this one in comparison to global MIUI 8.0.3.0.MAGMIDI?
Click to expand...
Click to collapse
Mate, check that https://xiaomi.eu/community/threads/xiaomi-eu-vs-global-rom-differences.37425/

alediniz said:
Use xiaomi.eu custom rom
Click to expand...
Click to collapse
One point to this. Its not only debloated, it got frequent updates.

i decided to make a debloat script on my own. I created this for global stable 8.0.4.0, because i dont trust xiaomi.eu. (they are very intransparent about their work, they could add god knows what to their ROM)
i used a script i found on the MIUI Forum and modified it to my needs:
Code:
ui_print("***********************************************");
ui_print("Remove MIUI 8 Global stable Bloatware ");
ui_print("***********************************************");
ui_print("Mounting system...");
run_program("/sbin/busybox", "mount", "/system");
ui_print("Mounting data...");
run_program("/sbin/busybox", "mount", "/data");
show_progress(0.25, 2);
#ui_print("delete_recursive installed Custom-Stuff...");
#delete_recursive("/system/app/ESFileExplorer", "/system/app/GoogleLauncher ");
#ui_print("Installing new Custom-Stuff...");
#package_extract_dir("system", "/system");
#package_extract_dir("data", "/data");
show_progress(0.25, 20);
ui_print("Removing Bloat...");
delete_recursive("/system/app/AnalyticsCore");
delete_recursive("/system/app/AntiSpam");
delete_recursive("/system/app/AppIndexProvider");
delete_recursive("/system/app/ApplicationsProvider");
delete_recursive("/system/app/BasicDreams");
delete_recursive("/system/app/BookmarkProvider");
delete_recursive("/system/app/BugReport");
delete_recursive("/system/app/Chrome");
delete_recursive("/system/app/Cit");
delete_recursive("/system/app/CloudService");
delete_recursive("/system/app/Drive");
delete_recursive("/system/app/Email");
delete_recursive("/system/app/FileExplorer");
delete_recursive("/system/app/Galaxy4");
delete_recursive("/system/app/Gmail2");
delete_recursive("/system/app/Hangouts");
delete_recursive("/system/app/HoloSpiralWallpaper");
delete_recursive("/system/app/HTMLViewer");
delete_recursive("/system/app/KeyChain");
delete_recursive("/system/app/KingSoftCleaner");
delete_recursive("/system/app/LiveWallpapers");
delete_recursive("/system/app/LiveWallpapersPicker");
delete_recursive("/system/app/mab");
delete_recursive("/system/app/Maps");
delete_recursive("/system/app/MiDiscover");
delete_recursive("/system/app/MiLinkService");
delete_recursive("/system/app/MiLivetalk");
delete_recursive("/system/app/MiPlay");
delete_recursive("/system/app/MiuiCompass");
delete_recursive("/system/app/MiuiScanner");
delete_recursive("/system/app/MiuiVideoPlayer");
delete_recursive("/system/app/MiWallpaper");
delete_recursive("/system/app/ModemTestMode");
delete_recursive("/system/app/NetworkAssistant2");
delete_recursive("/system/app/NFCtestSvc");
delete_recursive("/system/app/NoiseField");
delete_recursive("/system/app/Notes");
delete_recursive("/system/app/PartnerBookmarksProvider");
delete_recursive("/system/app/PaymentService");
delete_recursive("/system/app/PhaseBeam");
delete_recursive("/system/app/Photos");
delete_recursive("/system/app/PhotoTable");
delete_recursive("/system/app/SecurityAdd");
delete_recursive("/system/app/SecurityCoreAdd");
delete_recursive("/system/app/talkback");
delete_recursive("/system/app/Videos");
delete_recursive("/system/app/WAPPushManager");
delete_recursive("/system/app/WfdService");
delete_recursive("/system/app/Whetstone");
delete_recursive("/system/app/YouTube");
ui_print("Removing bloatware priv-app...");
delete_recursive("/system/priv-app/Calendar");
delete_recursive("/system/priv-app/CellBroadcastReceiver");
delete_recursive("/system/priv-app/CleanMaster");
delete_recursive("/system/priv-app/CloudBackup");
delete_recursive("/system/priv-app/MiDrop");
delete_recursive("/system/priv-app/Mipub");
delete_recursive("/system/priv-app/MiuiGallery");
delete_recursive("/system/priv-app/SpacesManagerService");
delete_recursive("/system/priv-app/SpacesTrustAgent");
delete_recursive("/system/priv-app/Tag");
delete_recursive("/system/priv-app/WallpaperCropper");
delete_recursive("/system/priv-app/YellowPage");
ui_print("Removing bloatware system/data-app...");
delete_recursive("/system/data-app");
ui_print("Removing Whetstone leftovers");
delete_recursive("/system/etc/WhetstonePermission");
show_progress(0.25, 5);
show_progress(0.25, 5);
ui_print("Unmounting system...");
run_program("/sbin/busybox", "umount", "/data");
run_program("/sbin/busybox", "umount", "/system");
ui_print("Installation complete!");
everything works perfekt, only problem is that i can't search settings anymore. does anybody of you guys know what disabled app causes this?

Removing "AppIndexProvider" or "ApplicationsProvider" could be causing this issue.

Rejerf said:
Removing "AppIndexProvider" or "ApplicationsProvider" could be causing this issue.
Click to expand...
Click to collapse
crap, thats what i thought...

wurstel said:
i decided to make a debloat script on my own. I created this for global stable 8.0.4.0, because i dont trust xiaomi.eu. (they are very intransparent about their work, they could add god knows what to their ROM)
Click to expand...
Click to collapse
Where did you get Global Stable 8.0.4.0 ? I thought latest global stable 8.0.3.0.

I have the mi5s plus, and that's the latest fw we got. I think it is the same as 8.0.3.0 for mi 5s though.

Related

[GUIDE]Procedure to Move Apps 2 Sd (ICS)

Hi Everyone
I am creating this thread because most of the people still asking how to move the apps 2 sd on ICS, as the app2sd dt is not working.
So here is a step by step guide to do it.
1st you need any root explorer.
I am using the File Manager (because the Root Explorer is getting FCs on ICS)
Here is the link to the File Manager
https://play.google.com/store/apps/details?id=com.rhmsoft.fm&feature=search_result
Load the File Manager
Go to setting and Tick the root explorer and Mount System Folders.
(Allow the Super User Permission)
Then download this file
http://forum.xda-developers.com/attachment.php?attachmentid=890365&d=1328558597
Unzip it and paste it in the sdcard.
Now open the File Manager
Copy The "S2E" from the sdcard\ICS_simple2ext\system\app
and paste it to the system\app (presented in the root folder)
Similarly copy the "20userinit" file from the sdcard\ICS_simple2ext\system\etc\init.d
And paste it to the system\etc\init.d (presented in the root folder)
It will ask to replace the file, so Just Replace it
Now open the S2E from the app drawer and configure the following :
- Menu->Settings: Check "Extended partiton info", "Mount as ext4" and "Set read buffer"
-Reboot your phone
-Start S2E again : Check "Applications" , "Private apps"
-Reboot your phone
Note: If you like you can also check the "Dalvik Cache" and the "Download cache"
You will get around 170 mb internal memory free out of 178 mb.
Special Thanks to:
Maclaw and His Team for Providing us the ICS
Works perfectly, this is the right method. Tested and used on v6 and v7 too.
followed the guide exactly. move the file to the specific location. after i restarted my phone there was no s2e app installed. tried opening it manually from system/app but i got this error : There is a problem parsing the package . the script is there, the 20userinit file, i tried using a2sd DT GUI but it says there is a problem with the script
But... this forum is not the place for guides
Sent from my hexacore rooted toaster with xdatoast premium
Maybe not, but looking after all these morons spamming CM9 dev thread, it could be sticky here, as an exception.
Work great..thanks bro.
Sent from my GT-S5660 using Tapatalk
This is not CWM update package?
donlecho said:
This is not CWM update package?
Click to expand...
Click to collapse
it is, but originally for another phone I think, but I saw the script and you should be able to install it in recovery, just make a backup, and mount system before flashing, the script doesn't do this.
voetbalremco said:
it is, but originally for another phone I think, but I saw the script and you should be able to install it in recovery, just make a backup, and mount system before flashing, the script doesn't do this.
Click to expand...
Click to collapse
But I think the system partition is mounted. See this.
updater-script file from meta inf
Code:
ui_print("Custom update script for");
ui_print("Sandvold's ICS for bravo");
ui_print("Packed by tlex");
ui_print("http://e-tel.eu");
ui_print(" ");
ui_print("Mounting system");
run_program("/sbin/busybox", "mount", "/system");
ui_print("Deleting old files");
ui_print(" ");
delete("/system/etc/init.d/10apps2sd");
ui_print("Extracting new files");
package_extract_dir("system", "/system");
ui_print("Setting permissions");
set_perm(0, 0, 0644, "/system/app/s2e.apk");
set_perm(0, 0, 0755, "/system/etc/init.d/20userinit");
ui_print("Unmounting system");
run_program("/sbin/busybox", "umount", "/system");
ui_print(" ");
ui_print("All done!");
In line 7 is command to mount system.
donlecho said:
This is not CWM update package?
Click to expand...
Click to collapse
I was unable to install it in the clock recovery mode.
Thats Why I found the alternate solution, and posted it.
Its working without any issues
donlecho said:
But I think the system partition is mounted. See this.
updater-script file from meta inf
Code:
ui_print("Custom update script for");
ui_print("Sandvold's ICS for bravo");
ui_print("Packed by tlex");
ui_print("http://e-tel.eu");
ui_print(" ");
ui_print("Mounting system");
run_program("/sbin/busybox", "mount", "/system");
ui_print("Deleting old files");
ui_print(" ");
delete("/system/etc/init.d/10apps2sd");
ui_print("Extracting new files");
package_extract_dir("system", "/system");
ui_print("Setting permissions");
set_perm(0, 0, 0644, "/system/app/s2e.apk");
set_perm(0, 0, 0755, "/system/etc/init.d/20userinit");
ui_print("Unmounting system");
run_program("/sbin/busybox", "umount", "/system");
ui_print(" ");
ui_print("All done!");
In line 7 is command to mount system.
Click to expand...
Click to collapse
lol didnt saw it
Sent from my GT-S5660 using xda premium
Nice guide.
However I simply tried with sucess this app2sd app: https://play.google.com/store/apps/details?id=com.a0soft.gphone.app2sd&hl=en
lemene said:
Nice guide.
However I simply tried with sucess this app2sd app: https://play.google.com/store/apps/details?id=com.a0soft.gphone.app2sd&hl=en
Click to expand...
Click to collapse
U are not able to move the system apps through thie link you have posted.
It just moves the installed apps to sd. So thats why you will not be able to get the maximum possible free space on the internal storage.
The App 2 SD is just a simple functioning app, not an app that makes the internal memory free
Ah, I see.
Thanks, indeed there's a lot of apps that will not move.
I'll follow the guide then.
---------- Post added at 08:27 PM ---------- Previous post was at 07:57 PM ----------
And worked great! Was able to free 130 MB!
btw reboot does not install se2 so I install it manually.
Also my root explorer works ok with gio's ICS.
thanks works!
{
"lightbox_close": "Close",
"lightbox_next": "Next",
"lightbox_previous": "Previous",
"lightbox_error": "The requested content cannot be loaded. Please try again later.",
"lightbox_start_slideshow": "Start slideshow",
"lightbox_stop_slideshow": "Stop slideshow",
"lightbox_full_screen": "Full screen",
"lightbox_thumbnails": "Thumbnails",
"lightbox_download": "Download",
"lightbox_share": "Share",
"lightbox_zoom": "Zoom",
"lightbox_new_window": "New window",
"lightbox_toggle_sidebar": "Toggle sidebar"
}
I am going to do this on my gio right now. But i just installed beta 8 and have to restore from Titanium backup. It installs them to phone, but if i move to SD does the WHOLE thing go or does it leave a bit? Also isnt i risky to put system apps on SD or would things like gmail, mail etc be okay? Im a noob to A2sd sorry
I Think a2sd dt not working because space in system is very low used by CM9 rom...i try to delete some apps in /system/app/ and then install a2sd script n work fine...
There, I just made a working update zip.
http://www.mediafire.com/?mjr9pbnu9zt1trw
AlwaysDroid said:
I am going to do this on my gio right now. But i just installed beta 8 and have to restore from Titanium backup. It installs them to phone, but if i move to SD does the WHOLE thing go or does it leave a bit? Also isnt i risky to put system apps on SD or would things like gmail, mail etc be okay? Im a noob to A2sd sorry
Click to expand...
Click to collapse
No problem you can move every thing to sd-ext.
Just don't worry about that.
waqasleo17 said:
No problem you can move every thing to sd-ext.
Just don't worry about that.
Click to expand...
Click to collapse
Okay thanks! What would you reccomend as a good partition size? i have 2gb left on my 4gb card.

[Dev][Kernel][CM7/AOSP][STOCK][CYANMOBILE]U235 Kernel [2.6.35.14]ADD-ON&UPDATE[1.0.3]

[Dev][Kernel][CM7/AOSP][STOCK][CYANMOBILE]U235 Kernel [2.6.35.14]ADD-ON&UPDATE[1.0.3]
I have compiled my own kernel for Gio based on the squadzone's cyanmobile 2.6.35.14 kernel source.This kernel should work on each cm7/aosp/stock ext4 fs but report me after testing.
Click to expand...
Click to collapse
FEATURES FOR ALL OF VERSIONS(CM7/AOSP/STOCK)
Click to expand...
Click to collapse
-Based on latest squadzone's source(2.6.35.14)
-Bln support
-EXT4 File system
-16 governors
-BFQ hierarchical scheduling support
-v(r) I/O scheduler added
-fixed camera rotate in sources
-cifs and tun as built in module
-Ported Battery Extender's battery driver
-Changes in lowmemorykiller.c driver for managing the tasks
-Changes in power_supply driver for Battery life
-Optimize for size disabled
-Change optimazation to O3 in Makefile
-Some changes in smartass2 governor for better battery life (try it and enjoy)
-Updated Bfq scheduler to v2.1
-Clean sources
-New makefile
-Compiled by newest linaro compiler
MUCH MORE...
Click to expand...
Click to collapse
DOWNLOADS
Click to expand...
Click to collapse
ADD-ON FOR ALL ROMS
GIO-U235-ADD-ON
Click to expand...
Click to collapse
CM7/AOSP
Click to expand...
Click to collapse
V1.0.3
Cyanmobile(2.3.8) Optimized :
Click to expand...
Click to collapse
V1.0.3
STOCK EXT4 FS (2.3.6)
Click to expand...
Click to collapse
V1.0.3-Beta
Special Thanks To :
-Squadzone for his awesome source
-Dragonn for Most of tweaks and mods & Help
-Tioammar for his support and help
-LibiSC for battery driver
-CM Team for cm7 source
Click to expand...
Click to collapse
Sources : github.com/squadzone
Click to expand...
Click to collapse
Change log
FEATURES :
ADD-ON FOR ALL ROMS :
NEW GOVERNORS:
-intellidemand
-ondemandx
SOME USEFUL MODULES :
-CD filesystem for mounting CD / DVD images as loop devices or USB CD drives
-NTFS filesystem support. Useful for mounting NTFS formatted drives
Click to expand...
Click to collapse
Huge update in sources just take a look at the first post
Click to expand...
Click to collapse
ATTENTION :
THE STOCK VERSION HAVE BOOTANIMATION BUG.JUST WAIT AFTER INSTALLING AND THE DON'T SCARE!
Click to expand...
Click to collapse
Screenshots?
ShutteN said:
Screenshots?
Click to expand...
Click to collapse
You wanna screenshots of kernel?
wojtek267 said:
You wanna screenshots of kernel?
Click to expand...
Click to collapse
Screenshots of kernel very funny:laugh:
A question for shutten : what you want to see???
I think you have to publish your github source .. (or source of delano/squadzone exc)..
Is this kernel already used the adreno driver from ics ? I mean, as the same as delanoister's kernel. He was backported the adreno driver from ics to work on gb, see on his blog. Its much smoother when playing games, but the only weird thing is his kernel have blank white screen when booting.
I'm about to try. Thank you!
IT don't use backported adreno libs coz delano kernel is 2.6.37.6 . But squadzon's source is one of the best sources.
Sent from my GT-I9300 using xda premium
how to flash.i have problem...........
Via cwm lol.same as the same
Sent from my GT-I9300 using xda premium
i can't flash
I don't know what's ure problem but if you havn't flashed any kernel you should go for guides.i have tested this kernel.
Sent from my GT-I9300 using xda premium
The updater script is wrong.. btw I've used the script from tuxkid and kernel is good
You have to remove all getprop ... the script have to begin in "ui_print"
---------- Post added at 01:53 PM ---------- Previous post was at 01:23 PM ----------
ui_print("U235 kernel ");
ui_print("");
ui_print("===========================");
ui_print("By: Farzad.u235");
ui_print("");
ui_print("");
ui_print("===========================");
show_progress(0.100000, 10);
ui_print("[ ] Mount Partition: SYSTEM");
run_program("/sbin/mount", "/system");
show_progress(0.500000, 40);
ui_print("[ ] Installing Files: SYSTEM");
package_extract_dir("system", "/system");
show_progress(0.200000, 10);
ui_print("[ ] Running Setup");
delete("/system/app/TweakManager.apk");
delete("/system/etc/init.d/00tweaks");
delete("/system/etc/init.d/23tweaks");
delete("/system/etc/init.d/00boot");
assert(package_extract_file("boot.img", "/tmp/boot.img"),
write_raw_image("/tmp/boot.img", "boot"),
delete("/tmp/boot.img"));
show_progress(0.100000, 0);
ui_print("[ ] Unmount Partition: SYSTEM");
run_program("/sbin/umount", "/system");
ui_print("[*] Installation Complete.");
ui_print("");
ui_print("Enjoy");
ui_print("");
ui_print("");
ui_print("By :");
ui_print(" Farzad.u235");
ui_print("");
Click to expand...
Click to collapse
This is the correct script
this is the first kernel where I see "undervolt cpu" feature (it may be in others but I didn't notice until now).
Are you sure it's working? the ratio of undervoltage can be changed with some application?
The kernel pack work perfect
Don't spam frankin.
Undervolt module works coz delano have made that
U can use apps to undervolt
Sent from my GT-S5660 using xda premium
farzad.u235 said:
The kernel pack work perfect
Don't spam frankin.
Undervolt module works coz delano have made that
U can use apps to undervolt
Sent from my GT-S5660 using xda premium
Click to expand...
Click to collapse
sorry sir,you should tested again...i flashed and abort 7 error
Is it possible to build to build a 3.5.3 kernel for android?
Atleast 3.0 should be possible I think..
Sent from my GT-S5660 using xda app-developers app
voetbalremco said:
Atleast 3.0 should be possible I think..
Sent from my GT-S5660 using xda app-developers app
Click to expand...
Click to collapse
I wonder why there is no 3.0 kernel for gio yet..
By the way, what is undervolting?

[SHARE] [SCRIPT] TrulyClean v1.5 - De-bloat ANY Touchwiz Rom in No Time!

User schoolsux has created a script to clean/de-bloat your touchwiz rom. I take no credit for this. Just wanted to share for those interested:good:
{
"lightbox_close": "Close",
"lightbox_next": "Next",
"lightbox_previous": "Previous",
"lightbox_error": "The requested content cannot be loaded. Please try again later.",
"lightbox_start_slideshow": "Start slideshow",
"lightbox_stop_slideshow": "Stop slideshow",
"lightbox_full_screen": "Full screen",
"lightbox_thumbnails": "Thumbnails",
"lightbox_download": "Download",
"lightbox_share": "Share",
"lightbox_zoom": "Zoom",
"lightbox_new_window": "New window",
"lightbox_toggle_sidebar": "Toggle sidebar"
}
Hey folks!
TrulyClean is a "any rom" script that removes A LOT of crap-apps (98+ apps removed) and other stuff on the phone.
Script will remove about 600mb since version 1.3 (Counted by removing from stock firmware.)
The purpose is to give you a clean start with no extras, much like the Nexus series experience but with the Samsung core intact.
All bloatware apps will be removed running the default script. I even count apps like S Voice and Samsung Hub as unnecessary apps.
Neither do I use Earth or Google+ and don't like these apps to be forced upon me as system apps when they are so easy to install from Play store!
It might be illusion but... I found my phone booting faster and running snappier with after applying this script.
Also, I don't have to cry anymore while checking the apps in the /system folder.
I hope this script will evolve over time and include more stuff that is "not needed" to give the best experience possible.
* Please tell if you notice that this script removes something that is NEEDED aka creating FC's.
* Feel free to tell me about stuff you find that can be removed without any damage.
* Most apps that are avaliable @ Play Store will be removed as system apps!
* Use & edit the TrulyClean script at your own risk.
Installation:
Script should work on any SGS4 TouchWiz rom.
Tested on: Stock deodexed firmware, WanamLite, Omega and FoxHound.
This script's default setting is created after my taste and may remove something you use.
If this is the case, have a look at this & edit the script at your own risk:
1. Open the .zip package using WinRAR or similar and then extract the META-INF\com\google\android\"updater-script" file.
2. Open and edit the file with a decent text editor (Notepad++) and remove the lines for stuff you want to keep or go pro and add some new lines yourself.
3. Save file and put the new updater-script back into the flashable zip!
1. Use the default script or edit the script after your taste. (see "hidden "tutorial above!)
2. Copy recovery.zip to phone.
3a. For best experience - do a full wipe, install a custom rom and then flash TrulyClean.zip.
3b. Script only removes apps in /system, so you have to uninstall any updated apps manually.
4. Flash in recovery (I use PhilZ Touch) & run script after every time you flash a new rom.
5. Enjoy and tell me what you think!
* Yes, I know stuff like Samsung Account and Kies can be removed. However these are NOT proper to remove though, as both give FC @ settings.
* "I run the script but Google+, Earth etc. are still there!" Solution: Updated system apps are put in /data. Go to Settings > Manage programs > uninstall these apps and they will disappear.
TrulyClean changelog:
Version 1.4
- Script now uses busybox mount method which means script should work fine on any version of the SGS4.
- Velvet.apk (Google Now & Search) is no longer removed due to a problem.​
Version 1.3
- Removes some more useless apps.
- Deletes pak and mcRegistry folders.​
Version 1.2
- Removes some more useless CSC stuff.
- Deletes Google Videos from system apps.
- Deletes secRCS.apk and SensorService.apk
- Removes some more folders!​
Version 1.1
- Removes more apps.
- Added removal of some libs and folders to the script.​
Version 1.0
- Release.​
Download:
SINCE 1.4 SCRIPT SHOULD WORK FINE ON ANY VERSION OF THE SGS4 USING SAMSUNG FIRMWARE.
Visit Original Thread for DOWNLOAD
Dont forget to hit the
button
TrulyClean version 1.4:
Code:
ui_print("");
ui_print(" %% %%");
ui_print(" %%% %%%");
ui_print(" %%%% %%%%");
ui_print(" %%%%%% %%%%%%");
ui_print(" %%%%%%%%%%%%%%%%%%%%%%%%%%");
ui_print("%%%%% TRULYCLEAN SCRIPT %%%%%");
ui_print(" %%%%%%%%%%%%%%%%%%%%%%%%%%");
ui_print(" %% v1.4 by schoolsux %%");
ui_print(" %%%%%%%%%%%%%%%%%");
ui_print("");
ui_print("");
ui_print("Running script & cleaning up...");
unmount("/system");
unmount("/data");
run_program("/sbin/busybox", "mount", "/system");
run_program("/sbin/busybox", "mount", "/data");
delete("/system/media/audio/ui/PowerOn.ogg");
delete("/system/media/audio/ui/LowBattery.ogg");
delete("/system/media/audio/ui/TW_Volume_control.ogg");
delete("/system/media/audio/ui/Charger_Connection.ogg");
delete("/system/app/SBrowser.apk");
delete("/system/app/SBrowserTry.apk");
delete("/system/app/sCloudSyncSBrowserBookmark.apk");
delete("/system/app/sCloudSyncSBrowserTabs.apk");
delete("/system/app/AccuweatherPhone2013.apk");
delete("/system/app/WeatherWidgetDaemon.apk");
delete("/system/app/SMemo2.apk");
delete("/system/app/sCloudSyncSNote.apk");
delete("/system/app/SNoteProvider.apk");
delete("/system/app/SHealth2.apk");
delete("/system/app/HealthContentProvider.apk");
delete("/system/app/PolarisViewer5.apk");
delete("/system/app/Earth.apk");
delete("/system/app/ColorBlind.apk");
delete("/system/app/DioDict3Service.apk");
delete("/system/app/EasyFavoritesContactsWidget.apk");
delete("/system/app/EasyLauncher.apk");
delete("/system/app/EasySettings.apk");
delete("/system/app/GMS_Maps.apk");
delete("/system/app/KNOXAgent.apk");
delete("/system/app/KNOXStore.apk");
delete("/system/app/MobilePrint2.apk");
delete("/system/app/MobilePrintSvc_CUPS.apk");
delete("/system/app/MobilePrintSvc_CUPS_Backend.apk");
delete("/system/app/MobilePrintSvc_Epson.apk");
delete("/system/app/MobilePrintSvc_HP.apk");
delete("/system/app/MobilePrintSvc_Samsung.apk");
delete("/system/app/PageBuddyNotiSvc2.apk");
delete("/system/app/PlusOne.apk");
delete("/system/app/S_Translator_CSLi.apk");
delete("/system/app/SamsungVideo.apk");
delete("/system/app/SimpleWidget.apk");
delete("/system/app/SmartBriefing4x2.apk");
delete("/system/app/SNS.apk");
delete("/system/app/Street.apk");
delete("/system/app/S-Voice_Android_phone_J.apk");
delete("/system/app/Talk.apk");
delete("/system/app/talkback.apk");
delete("/system/app/TripAdvisor.apk");
delete("/system/app/WebManual.apk");
delete("/system/app/YouTube.apk");
delete("/system/app/GoogleSearchWidget.apk");
delete("/system/app/AllSharePlay15.apk");
delete("/system/app/ChatON_feature.apk");
delete("/system/app/ChatONV_J.apk");
delete("/system/app/CHS_J_Device_only.apk");
delete("/system/app/Com2usPoker_ASGC.apk");
delete("/system/app/Dropbox.apk");
delete("/system/app/DropboxOOBE.apk");
delete("/system/app/Episodes.apk");
delete("/system/app/Flipboard.apk");
delete("/system/app/GoogleFeedback.apk");
delete("/system/app/GroupPlay_20.apk");
delete("/system/app/InteractiveTutorial.apk");
delete("/system/app/Magazines.apk");
delete("/system/app/Match3VS.apk");
delete("/system/app/Music2.apk");
delete("/system/app/Peel.apk");
delete("/system/app/PlusOne.apk.apk");
delete("/system/app/PolarisViewer5.apk");
delete("/system/app/S_Translator_CSLi.apk.apk");
delete("/system/app/SamsungApps_J_Only.apk");
delete("/system/app/SamsungAppsUNA3.apk");
delete("/system/app/SamsungBooks.apk");
delete("/system/app/SamsungGames.apk");
delete("/system/app/SamsungHub.apk");
delete("/system/app/SamsungHubUpdater.apk");
delete("/system/app/SamsungLearning.apk");
delete("/system/app/SamsungMusic.apk");
delete("/system/app/SamsungOCR2.apk");
delete("/system/app/SamsungWatchON.apk");
delete("/system/app/TravelWidget.apk");
delete("/system/app/TravelService.apk");
delete("/system/app/TripAdvisor.apk");
delete("/system/app/YahoostockPhone2013.apk");
delete("/system/app/YahoonewsPhone2013.apk");
delete("/system/app/Blurb.apk");
delete("/system/app/Books.apk");
delete("/system/app/StoryAlbumWidget.apk");
delete("/system/app/CSC.apk");
delete("/system/app/FaceLock.apk");
delete("/system/app/Gmail2.apk");
delete("/system/app/Talk.apk");
delete("/system/app/secRCS.apk");
delete("/system/app/SensorService.apk");
delete("/system/app/Videos.apk");
delete("/system/app/ContainerAgent.apk");
delete("/system/app/SamsungTTS.apk");
delete("/system/app/SPDClient.apk");
delete("/system/app/SyncmlDM.apk");
delete("/system/app/SyncmlDS.apk");
delete("/system/app/DSMForwarding.apk");
delete("/system/app/DSMLawmo.apk");
delete("/system/app/ELMAgent.apk");
delete("/system/app/BluetoothTest.apk");
delete("/system/app/WlanTest.apk");
delete("/system/app/wssyncmlnps.apk");
delete("/system/lib/libfacerecognition.so");
delete("/system/lib/libfacelock_jni.so");
delete("/system/lib/libgtalk_jni.so");
delete("/system/lib/libChatOnAMSImageFilterLibs-1.0.2.so");
delete("/system/lib/libearthmobile.so");
delete("/system/lib/libpolarisviewer5.so");
delete("/system/lib/libpolarisofficedump.so");
delete("/system/lib/libhealth_jni.so");
delete("/system/lib/libsnote_core.so");
delete("/system/lib/libSPenGesturePE.so");
delete("/system/lib/libSPenSDKImageFilterLibsPE.so");
delete_recursive("/system/opticalreader");
delete_recursive("/system/VODB");
delete_recursive("/system/media/video");
delete_recursive("/system/containers");
delete_recursive("/system/tts/lang_SMT");
delete_recursive("/system/tts/lang_SVOX");
delete_recursive("/system/tts/lang_SVOXP");
delete_recursive("/system/wakeupdata");
delete_recursive("/system/voicebargeindata");
delete_recursive("/system/csc");
delete_recursive("/system/lost+found");
delete_recursive("/system/preloaddata");
delete_recursive("/system/app/pak");
delete_recursive("/system/app/mcRegistry");
delete("/system/CSCVersion.txt");
delete("/system/csc_contents");
unmount("/system");
unmount("/data");
ui_print("Done, enjoy!");
Great script
Sent from my SGH-M919 using Tapatalk 2
I don't see it posted anywhere but does this script work on the S3?
Sent from my SGS3 stock rooted
No.
Oh yeah thanks bruh ...
Sent from my SGH-M919
How much ram would this free up? Kinda want to run the script but I actually like s health.
Sent from my SGH-M919 using Tapatalk 2
PostMeridianLyf said:
How much ram would this free up? Kinda want to run the script but I actually like s health.
Click to expand...
Click to collapse
So remove S-Health from the script before running.
Does it remove the carrierIQ bull****?
Thanks a lot.
And can someone please post a mirror? Links don't work anymore. Thanks again.
Would love to use this but links are non-existent
davwman said:
Would love to use this but links are non-existent
Click to expand...
Click to collapse
Download from original thread linked in OP
looking forward to trying this out.I hate all that bloatware...
This works great!!!!
[discontinued]
WeThePeople13 said:
This works great!!!!
Click to expand...
Click to collapse
Hmm, did you happen to notice the original/referenced thread is closed, the tool is officially marked as "[DISCONTINUED]"?? Or did you decide to try it anyway?
I also noticed the DISCONTINUED word in the title. Is this script safe to use in a Samsung Galaxy GT-I9500 nowadays? Thanks
will this work on the n910p?
Since apparently nobody else would check, I did. Don't use this on OK3, it breaks stuff and causes FCs (sensor service being one of them).
As the source thread says, it's depreciated and can confirm to not use this.
Will this work on Samsung Galaxy Core 2?
Will this work for the galaxy s5???
Sent from my SM-G900R4 using XDA-Developers mobile app
Samuel.v said:
Will this work for the galaxy s5???
Sent from my SM-G900R4 using XDA-Developers mobile app
Click to expand...
Click to collapse
I highly doubt it. It wasn't updated beyond a certain point
Sent from my Nexus 6

Aroma Cleaner Bloatware Version 1

Aroma Cleaner Bloatware
this tool will helping about :
- simple and fast way to delete bloatware from your device
- takes less time to delete all the listed applications and files in the list
- no trash left behind as it would be if you delete files manually using Root Explorer
- more free RAM for apps that you are actually using
- better battery life and device speed improvements
you can select app for remove it by this tool
in next version will add more app later
now app list which you can select for remove
Code:
AlarmWidget.apk
BandService.apk
BasicDreams.apk
BCService.apk
BluetoothTest.apk
DeepSea.apk
DirectConnect.apk
DropboxOOBE.apk
DualClockDigital.apk
FaceLock.apk
GearManagerStub.apk
GlanceView.apk
GoogleCalendarSyncAdapter.apk
GoogleContactsSyncAdapter.apk
MediaUploader.apk
NfcTest.apk
PhotoTable.apk
PickUpTutorial.apk
SamsungTTS.apk (include /system/tts)
SCParser.apk
SecEmail_J.apk
SecExchange.apk
SecFactoryPhoneTest.apk
SecHTMLViewer.apk
SilentLog.apk
SmartcardManager.apk
SmartcardService.apk
Stk.apk
UniNotes.apk
WlanTest.apk
CloudAgent.apk
DirectShareManager.apk
DSMForwarding.apk
DSMLawmo.apk
FactoryTest.apk
GoogleFeedback.apk
PageBuddyNotiSvc.apk
SelfTestMode.apk
Tag.apk
SCONE_Android_ProxyService.apk (include /system/lib/libscone_proxy.so)
WfdBroker.apk
wssyncmlnps.apk
TrimApp_phone_J.apk
SamsungSans.apk
ChocoEUKor.apk
CoolEUKor.apk
RoseEUKor.apk
PanningTryActually.apk
FlashAnnotate.apk
FlashAnnotateSvc.apk
FmmDM.apk
FmmDS.apk
FusedLocation.apk
intelligenceservice_1.0_alpha1.apk
SyncmlDS.apk
Download
http://d-h.st/mqZ
will good if have someone can capture image for me or report or told list app on next version
Aonja said:
Aroma Cleaner Bloatware
...
will good if have someone can capture image for me or report or told list app on next version
Click to expand...
Click to collapse
Great Job man. THX:good:
Can you tell me about this :
- SamsungTTS.apk (include /system/tts)
- SCParser.apk
shasha59 said:
Great Job man. THX:good:
Can you tell me about this :
- SamsungTTS.apk (include /system/tts)
- SCParser.apk
Click to expand...
Click to collapse
SamsungTTS.apk is Samsung text to speak engine , you can remove if not use
SCParser.apk , i don't know what's that , but i removed it. it 's not affect any my daily usage. you can try backup before remove it
on next version i will add more detail about apk which i know
I used this work, unfortunately I no longer the synchronization of contacts in gmail.com (google account), how to restore this?
From your rom .zip extract it and copy /patse then chmod 644
Code:
Aonja said:
From your rom .zip extract it and copy /patse then chmod 644
Click to expand...
Click to collapse
sorry bro, the procedure of how to do I was already clear ... however, I asked you please, which was the application from having to copy.
usitaly said:
I used this work, unfortunately I no longer the synchronization of contacts in gmail.com (google account), how to restore this?
Click to expand...
Click to collapse
With your google account, i think.
@Aonja : can you remove the "GoogleContactsSyncAdapter.apk" in your aroma, please.
I got the same sync problem but fortunately, i restore the file copy with Titanium pro.
shasha59 said:
With your google account, i think.
@Aonja : can you remove the "GoogleContactsSyncAdapter.apk" in your aroma, please.
I got the same sync problem but fortunately, i restore the file copy with Titanium pro.
Click to expand...
Click to collapse
thanks for the report.... I have also taken steps to eliminate by the script some apk that may be necessary which must not be deleted for the normal operation of the device (eg. sync contacts google).
http://www31.zippyshare.com/v/13490485/file.html
all credit always to Aonja

[Theme™] [>Theme your Nova Launcher Like S8 Launcher<]

Hi everyone​
I have made some changes for the Nova launcher to make it looks like S8 Launcher
So I want to share it with you
Installation Method
1. download files and extract it with es file explorer or any extractor app
2. Install Nova, Tesla, S8icons and XWidget app(if you don't have them)
3. Copy XWidget folder to Internal Storage Folder(sdcard main folder not extsdcard)
4. Now launch Nova (by pressing home button and choose nova)
5. Select (Select Backup) and go to where you extracted the folder and select the backup (**-**-**.novabackup)
6. Press ok to the delete current layout
7. You may see that the widgets show Setup just click on it and choose one of the S8 widgets and do this for the second widget
8.You can enjoy now.
To download the .zip file
https://drive.google.com/open?id=1Xi7f4F8Wuz5JzMhFnJDPythS0LFWKEDW
Hope I helped you
I'm using RR beta 2 with 200dpi so you may face some problems with screen dpi
you can try and tell me
Reserved
more than 120views and no one replay?
https://youtu.be/krw_WDJtKCE
Awesome
https://m.youtube.com/watch?v=AjdGPUOC_RA
A found this one
Prasourabha said:
Awesome
Click to expand...
Click to collapse
the same
jonnym12345 said:
https://m.youtube.com/watch?v=AjdGPUOC_RA
A found this one
Click to expand...
Click to collapse
hmmm i can make a backup like it so you just restore and done
Yer a back up would be handy
I have KWGT can I use that for the widget are do I have to use zoopler/XWidget?
Here is mine on tablet not phone so for so good energy bar at the top to show me the power
Will look to impove it so for happy with above
You might be interested in
https://play.google.com/store/apps/details?id=com.fb.glovebox
Any way to get the folders look lile s8? Nova doesnt support that...any other launcher?
ported pack off s8 widgets here to use with zooper
navbar home page count clock etc all zooper widgets as see in photo by some one called Braiteyy edited pack just left the .zw files init
https://forum.xda-developers.com/th...ons-navbar-t3595711/post72020786#post72020786
would like see how they worked out for you and your setup post photos if you used this
adamh.ayyad said:
Hi everyone​
I have made some changes for the Nova launcher to make it looks like S8 Launcher
So I want to share it with you
Installation Method
1. download files and extract it with es file explorer or any extractor app
2. Install Nova, Tesla, S8icons and XWidget app(if you don't have them)
3. Copy XWidget folder to Internal Storage Folder(sdcard main folder not extsdcard)
4. Now launch Nova (by pressing home button and choose nova)
5. Select (Select Backup) and go to where you extracted the folder and select the backup (**-**-**.novabackup)
6. Press ok to the delete current layout
7. You may see that the widgets show Setup just click on it and choose one of the S8 widgets and do this for the second widget
8.You can enjoy now.
To download the .zip file
https://drive.google.com/file/d/0B_vPcGzJdJmMMFlEam12X2pkTzA/view?usp=drivesdk
Hope I helped you
I'm using RR beta 2 with 200dpi so you may face some problems with screen dpi
you can try and tell me
Click to expand...
Click to collapse
Hello, good morning
I have a suggestion , i think it could be help if you like
You can make a flashable zip with the package using that scripts for put your package and data folder
pick a sample zip
1) save your customized Nova Launcher data and put in zip folder in the structure data/data
2) create a folder with your package inside zip
3) Create a folder with data/app or system/app and put all apk needed inside
In updater-script add this codes
Code:
show_progress(0.100000, 0);
show_progress(0.500000, 0);
run_program("/sbin/busybox", "mount", "/system");
run_program("/sbin/busybox", "mount", "/data");
run_program("/sbin/busybox", "mount", "/dalvik");
ui_print("write what u want here");
delete_recursive("/data/dalvik-cache");
delete_recursive("/dalvik/dalvik-cache");
package_extract_dir("yourpackagefolder", "/sdcard/Nova_Launcher_Backup_folder");
package_extract_dir("system", "/system");
package_extract_dir("data", "/data");
package_extract_dir("data/data", "/data/data");
run_program("/sbin/busybox", "umount", "/system");
run_program("/sbin/busybox", "umount", "/data");
run_program("/sbin/busybox", "umount", "/dalvik");
run_program("/sbin/busybox", "umount", "/sdcard");
ui_print("write what u want here");
show_progress(0.2, 10);
regards
Virus message in Google drive ?
$tefano said:
Virus message in Google drive ?
Click to expand...
Click to collapse
Hmm
Updated
The zip link is down

Categories

Resources