Memory and Power Icons - General Topics

Where are these icons themselves stored at. I looked ceshell.dll and cplmain.cpl but didn't find them.
I am using cLaunch for icons on the Today page and I have made links to both the Power and Memory settings pages, but would like to have a real icon instead of just the generic windows flag.

Found it. Funny how you can search for hours and find nothing, then after posting find it in 5 minutes.
The answer: shellres.dll
22#ctlpnl cplmain.cpl,4,0?shellres.dll,-13900
I found a Dutch site listing all icons and their indexes in shellres.dll. The preceding number is the cpmain.cpl index of each applet.
0 CPL_Contrast 13905
1 CPL_Password 13942
2 CPL_Owner 13841
3 CPL_Power 13895
4 CPL_Memory 13900
5 CPL_About 13899
6 CPL_Screen 13902 (backlight)
7 CPL_Stylus 13906 (align screen)
8 CPL_SIP 13936
9 CPL_Sounds 13924
10 CPL_Remove 13943
11 CPL_Menus 13937
12 CPL_Button 13944
13 CPL_Today 13952
14 CPL_Offerings 13971 (updates)
15 CPL_Beam 13910
16 CPL_Clock 13840
17 CPL_Network 13888
18 CPL_Regional 13901
19 CPL_Phone 13953 (connections)
20 CPL_AdminPasswd 13954
21 CPL_Bluetooth 13909
22 CPL_Certificates 13941

Related

Hex Edit Method for Changing Sprint banner text on Lockscreens OR Notification Menu

I wanted to try and see if it were possible to avoid having to hack smali code, or use CDMA Workshop to globally change your phone settings for displaying the carrier name, with the goal of making it easier for someone to change the 'Sprint' banner text on their vanilla lockscreen, HTC Lockscree, or Notifications Window, to something else.
Here's a way if you are interested (see end of post for links for HTC Lockscreen and/or Notification Window):
0. Make a nandroid before attempting this!
1. Download the attached XML file which I have modified to allow this option. The XML file, keyguard_screen_tab_unlock.xml, has been given a .txt extension so that it downloads correctly. After downloading, remove the .txt extension.
2. Open up the compiled binary XML file you just downloaded in your favorite hex editing program, I prefer HxD. It is freeware, and it's what all the kids are using .
3. I have modified the attached XML file to default to say 'HTC EVO' as the banner. This is just so that there is something to search for and replace. In addition, the compiled XML will allow for a replacement string up to 20 characters in length. You CANNOT exceed, or shorten the actual character length of data when hex editing. That is, you cannot delete anything in the file, only replace.
But, you say: "Hey John, 'HTC EVO' is NOT 20 characters in length!" This is correct, it is only 7, and as such, to the left (front) of this text are 13 spaces that I've left empty for you.
4. Search for the hex value of this 20 character string I've inserted into the XML, which is the following sequence:
Code:
20 20 20 20 20 20 20 20 20 20 20 20 20 48 54 43 20 45 56 4F
As you can quickly tell, the hex value '20' represents a space, while the last 7 hex values represent the text 'HTC EVO', as follows:
Code:
20 20 20 20 20 20 20 20 20 20 20 20 20 48 54 43 20 45 56 4F
H T C E V O
5. Figure out the text you want to use for the lockscreen banner, again, up to 20 characters in length, and use the following site to convert your text to hex equivalents:
http://www.string-functions.com/string-hex.aspx
In my example, I will use "John's Phone", which converts to:
Code:
4a 6f 68 6e 27 73 20 50 68 6f 6e 65
6. Since "John's Phone" is only 12 characters in length, I need eight more characters to replace a fixed 20 character length string with another 20 character length string, so I have to append 8 hex equivalent spaces, represented by '20' to the front of my new string:
Code:
20 20 20 20 20 20 20 20 4a 6f 68 6e 27 73 20 50 68 6f 6e 65
7. Now that I have my new string, in the hex editor that I just opened the XML file in, simply search & replace the old hex value (be sure to search for hex, not text):
Code:
20 20 20 20 20 20 20 20 20 20 20 20 20 48 54 43 20 45 56 4F
With the new hex value:
Code:
20 20 20 20 20 20 20 20 4a 6f 68 6e 27 73 20 50 68 6f 6e 65
8. Save the modified XML file.
This XML file's home is in your framework-res.apk file, in the '/res/layout' folder. And you need to replace the default 'keyguard_screen_tab_unlock.xml' with your modified version.
9. Pull the current framework-res.apk file to your working folder via adb:
Code:
adb pull /system/framework/framework-res.apk .
10. Open the .apk file up by using any zip type program, 7zip, winRar, WinZip, etc, navigate to the '/res/layout/' folder and drop in your modified 'keyguard_screen_tab_unlock.xml' file.
11. Close up the file and push back to your phone:
Code:
adb remount
adb push framework-res.apk /system/framework
adb reboot
That's it. No decompiling java code, no hex workshop, just a little elbow grease. Once your phone comes back up, if you followed the steps correctly, you will see your newly modified custom banner on the stock vanilla lockscreen, assuming that this is what you are already running. Note, pushing a live apk file back to your phone may reset your widgets and/or cause you to have to reset up your sync accounts. You can avoid this by creating a flashable zip, or pushing to the phone as soon as it responds to adb remount.
While it seems like a lot of steps, I just wanted to lay this out as explicitly as possible. Anyone who does any sort of themeing or mild work on the phone should be able to pull this off in a few minutes at most.
Reference:
{
"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"
}
EDIT: See Here for similar instructions for the stock HTC LockScreen.
EDIT 2: See Here for instructions for modifying the banner text on the status bar notification window.
EDIT 3: If running CyanogenMod, use the applicable version attached with the .cm6*.txt extension, and be sure to remove everything after the .xml extension.
EDIT 4: If running vanilla locks mod for Sense (rotary, slider, etc), use the applicable version attached with the .vanilla*.txt extension, and be sure to remove everything after the .xml extension.
This is great! Thanks.
nukedukem said:
This is great! Thanks.
Click to expand...
Click to collapse
Sure thing. Would love to see a screen capture by someone who pulls this off successfully, to verify there are no errors in the steps / sequence I posted.
I removed the text completely with 20's, so maybe this isn't the best example, but it worked. Thanks again.
nukedukem said:
I removed the text completely with 20's, so maybe this isn't the best example, but it worked. Thanks again.
Click to expand...
Click to collapse
Nope, great example. I fully expected that some would want to do that. Nice. Thanks for the confirmation.
Similar Solution for Status Bar
Here is an example for doing something similar for the status bar drown down menu, by replacing 'Sprint' with your own text, w/o CDMA Workshop.
This did, however, require some smali edits, which I was trying to avoid...
I am a total newb when it comes hex editing and so forth, but I was able to follow every single step with no problems, however, my lock screen still says "Sprint" following a reboot. I'm on Fresh 3.3.0.1. Any suggestions on what to check?
erikivy said:
I am a total newb when it comes hex editing and so forth, but I was able to follow every single step with no problems, however, my lock screen still says "Sprint" following a reboot. I'm on Fresh 3.3.0.1. Any suggestions on what to check?
Click to expand...
Click to collapse
Are you using the HTC Lockscreen, or the Android Lockscreen? This is specifically for the Android Lockscreen.
JsChiSurf said:
Are you using the HTC Lockscreen, or the Android Lockscreen? This is specifically for the Android Lockscreen.
Click to expand...
Click to collapse
Ahhhhh, that must be it. Thanks for the quick clarification.
erikivy said:
Ahhhhh, that must be it. Thanks for the quick clarification.
Click to expand...
Click to collapse
If you want to verify your work, you can temporarily (or permanently) move the HTC Lockscreen out of the way, just to test.
Via adb, try the following:
Code:
adb remount
adb shell
cd /system/app
mv HtcLockScreen.apk HtcLockScreen.apk.bak
reboot
After rebooting, your phone should come up with the Android lockscreen in place, hopefully, with your custom text.
If you want to go back to your HTC Lockscreen:
Code:
adb remount
adb shell
cd /system/app
mv HtcLockScreen.apk.bak HtcLockScreen.apk
reboot
BTW, if interested, I could take some time and see if I can put together the same mod for the stock HTC Lock as well.
JsChiSurf said:
Here is an example for doing something similar for the status bar drown down menu, by replacing 'Sprint' with your own text, w/o CDMA Workshop.
This did, however, require some smali edits, which I was trying to avoid...
Click to expand...
Click to collapse
I would be very much interested in knowing how you did this as I can't run CDMA workshop in a virtual machine.
JsChiSurf said:
BTW, if interested, I could take some time and see if I can put together the same mod for the stock HTC Lock as well.
Click to expand...
Click to collapse
This may come in handy too
JsChiSurf said:
If you want to verify your work, you can temporarily (or permanently) move the HTC Lockscreen out of the way, just to test.
Via adb, try the following:
Code:
adb remount
adb shell
cd /system/app
mv HtcLockScreen.apk HtcLockScreen.apk.bak
adb reboot
After rebooting, your phone should come up with the Android lockscreen in place, hopefully, with your custom text.
If you want to go back to your HTC Lockscreen:
Code:
adb remount
adb shell
cd /system/app
mv HtcLockScreen.apk.bak HtcLockScreen.apk
adb reboot
BTW, if interested, I could take some time and see if I can put together the same mod for the stock HTC Lock as well.
Click to expand...
Click to collapse
This worked perfectly! Thanks for going the extra mile to help a rookie. I'm a long-time CM6 user just experimenting with Fresh, so I have no love-affair with the HTC lock screen. I'm happy to see the familiar vanilla lock.
nukedukem said:
I would be very much interested in knowing how you did this as I can't run CDMA workshop in a virtual machine.
Click to expand...
Click to collapse
I haven't given up on trying to accomplish this 100% through XML edits. By coupling with a recompiled services.jar, it can be problematic for those who may already have a custom services.jar file for other mods. If I don't find a solution, I'll post what I did for the current method.
nukedukem said:
This may come in handy too
Click to expand...
Click to collapse
I'll take a look. Can't imagine it should be much different that the vanilla lock change.
erikivy said:
This worked perfectly! Thanks for going the extra mile to help a rookie. I'm a long-time CM6 user just experimenting with Fresh, so I have no love-affair with the HTC lock screen. I'm happy to see the familiar vanilla lock.
Click to expand...
Click to collapse
Sweet. The fact that you pulled it off no longer makes you a rookie .
HTC Lock Screen
Okay, attached is the XML file to edit if using the stock HTC Lockscreen, as opposed to the Vanilla Android Lockscreen.
The instructions are virtually the same, with the exception being the name of the attached / applicable file is 'lock_screen_bar.xml'. Again, the attachment has been given a .txt extension for download, be sure to rename by removing the .txt extension prior to editing.
There are a couple of important differences between this mod and the vanilla mod. Since on the HTC Lockscreen the 'Sprint' text is centered, and I wanted to allow for up to 20 characters in the name, you have to center your text across the 20 characters, rather than right align by appending the spaces to the front of your string. Also, I defaulted / hard coded the text in the attached file to be 'Sprint', rather than 'HTC EVO', to make it appear to be more 'stock' in nature.
So, now, when you search for the hex value to replace, which is Sprint surrounded by spaces, you will search for:
Code:
20 20 20 20 20 20 20 53 70 72 69 6E 74 20 20 20 20 20 20 20
S p r i n t
To re-iterate, it is imperative that you try and keep an equal number of spaces to the left/right of your text, to keep it centered on the lockbar. So, using "John's Phone" as the example, which again translates to:
Code:
4a 6f 68 6e 27 73 20 50 68 6f 6e 65
You can see that there are 12 hex characters, since we need 20, I need 8 spaces (20 - 12 = 8), equally distributed to the front and back of the string, or 4 each:
Code:
20 20 20 20 4a 6f 68 6e 27 73 20 50 68 6f 6e 65 20 20 20 20
So, we simply search and replace (in hex mode) the original value:
Code:
20 20 20 20 20 20 20 53 70 72 69 6E 74 20 20 20 20 20 20 20
For the new:
Code:
20 20 20 20 4a 6f 68 6e 27 73 20 50 68 6f 6e 65 20 20 20 20
Then, follow the instructions in the OP to pull/push your file. This time, the file to pull is 'HtcLockScreen.apk' in the '/system/app' folder, and the home for the XML file 'lock_screen_bar.xml' is the '/res/layout' folder of the apk.
And once done, after a reboot, voila:
WOOOOOOOOOOH 2xThumbs-Up
oops, my bad
Is this doable on the incredible?
Here is the file. You could possibly modify this for me? I see what you did with the HTC EVO banner in the hex, but I don't know where to add that here.
silverxbv2 said:
Is this doable on the incredible?
Here is the file. You could possibly modify this for me? I see what you did with the HTC EVO banner in the hex, but I don't know where to add that here.
Click to expand...
Click to collapse
What does it normally say by default? Verizon?
Hey... This thing makes phone calls too!
Can you use root explorer instead of adb push??

[Q] framework-res image counts

just playing around with my notification bar and wondering if i have to replace all 34 images for the charging icons or if i could just remove the ones i dont need. for example i have 34 and want to use 6 do i need to just keep cycling the 6 to make a total of 34 or can i simply remove the 28 i dont need

22 New Wallpapers for all Z series phones!

Enjoy everyone
Cropped and saved mostly from Reddit's EarthPorn subreddit
My favourites are 20 and 22
21 and 22 because I can only attach 20 per page

Top 15 apps in android

what are the Top 15 apps must b there in android mobile????

[DEBLOAT] Apps to remove

Using Debloater by veez21 i want to debloat global/european official firmware for POCO F2 Pro.
I already removed and everything working fine:
Code:
1 - AutoRegistration
2 - Basic Daydreams
3 - Calculator
4 - Facebook App Manager
5 - GetApps
6 - Joyose
7 - Lens
8 - Log generator
9 - Mi Account
10 - Mi Coin
11 - Mi Connect Service
12 - Mi Pay
13 - Mi Video
14 - MiCloudSync
15 - MiuiDaemon
16 - msa
17 - Notes
18 - PartnerNetflixActivation
19 - Print Service Recommendation Service
20 - Print Spooler
21 - Quick apps Service Framework
22 - System printing service
23 - Xiaomi Cloud
24 - Xiaomi service framework
25 - Xiaomi Service Framework Keeper
26 - Xiaomi SIM Activation Service
27 - XiaomiModemDebugService
28 - Live Wallpaper Picker
29 - Bookmark Provider
30 - BTCIT
31 - MiAudioVisual
32 - MIUI security components
33 - Android Q Easter Egg
34 - CIT
35 - HybridAccessory
36 - WMService
37 - WallpaperBackup
38 - Mi Pay
39 - Backup
40 - BackupRestoreConfirmation
41 - Browser Services
42 - Cloud backup​
43 - CloudServiceSysbase
44 - Facebook App Installer
45 - Facebook Services
46 - Games
47 - Mi Browser
48 - Mi Share
49 - Music
50 - PartnerBookmarksProvider
51 - ShareMe
52 - Tags
53 - Yellow pages
54 - Calendar
55 - Gmail
56 - Google One
57 - Google Pay
58 - Maps
59 - YouTube
More to remove left:
Code:
1 - Android Shared Library (GoogleExtShared)
2 - Battery and performance (PowerKeeper)
3 - Bluetooth (Bluetooth)
4 - Bluetooth MIDI Service (BluetoothMidiService)
5 - CameraTools (CameraTools)
6 - CaptivePortalLogin (PlatformCaptivePortalLogin)
7 - CarrierDefaultApp (CarrierDefaultApp)
8 - Cast (MiLinkService2)
9 - Cast (MiLinkService2)
10 - Certificate Installer (CertInstaller)
11 - Clock (DeskClock)
12 - Companion Device Manager (CompanionDeviceManager)
13 - Compass (MiuiCompass)
14 - CQR (com.miui.qr)
15 - CtsShimPrebuilt (CtsShimPrebuilt)
16 - Delmar Fingerprint (GFDelmarSetting)
17 - Earphones (MiSound)
18 - Feedback (MiuiBugReport)
19 - FIDO UAF1.0 ASM (FidoAuthen)
20 - FIDO UAF1.0 Client (FidoClient)
21 - File Manager (FileExplorerGlobal)
22 - FileExplorer old (FileExplorer old)
23 - Frequent phrases (FrequentPhrase)
24 - Fused Location Provider (FusedLocationProvider)
25 - GPS location (ConnectivityNPI)
26 - HomeLayout (GlobalLayout)
27 - HTML Viewer (HTMLViewer)
28 - karaoke (MiuiAudioMonitor)
29 - Key Chain (KeyChain)
30 - MConnService (VsimCore)
31 - MIUI Bluetooth (MiuiBluetooth)
32 - MIUI SDK (miui)
33 - MiuiBiometric (MiuiBiometric)
34 - miuisystem (miuisystem)
35 - MiuiSystemUIPlugin (MiuiSystemUIPlugin)
36 - MODEM test tools (ModemTestBox)
37 - Nfc Service (NQNfcNci)
38 - Notifications (NotificationCenter)
39 - OOBHelper (OOBHelper)
40 - OsuLogin (OsuLogin)
41 - Package installer (GlobalPackageInstaller)
42 - PacProcessor (PacProcessor)
43 - PAI (PlayAutoInstallStubApp)
44 - Power Detector (PowerChecker)
45 - QColor (QColor)
46 - Quick ball (TouchAssistant)
47 - Screen Recorder (MiuiScreenRecorder)
48 - SecureElement (SecureElement)
49 - Security Core Component (SecurityCoreAdd)
50 - Sim App Dialog (SimAppDialog)
51 - SIM toolkit (Stk)
52 - SimContacts (SimContact)
53 - slaservice (slaservice)
54 - System apps updater (SystemAppUpdater)
55 - System service plugin (securityadd)
56 - System Tracing (Traceur)
57 - ThemeModule (ThemeModule)
58 - Themes (ThemeManager)
59 - Updater (Updater)
60 - WallPaper (MiWallpaper)
61 - WAPPushManager (WAPPushManager)
62 - workloadclassifier (workloadclassifier)
Code:
1 - Android Services Library (GoogleExtServicesPrebuilt)
2 - AudioEffect (MusicFX)
3 - Blocked Numbers Storage (BlockedNumberProvider)
4 - Bokeh (MiuiExtraPhoto)
5 - Calendar storage (CalendarProvider)
6 - Call Log Backup/Restore (CallLogBackup)
7 - Call Management (Telecom)
8 - Cleaner (CleanMaster)
9 - Contacts Storage (ContactsProvider)
10 - Downloads (DownloadProvider)
11 - Downloads (DownloadProvider)
12 - Dynamic System Updates (DynamicSystemInstallationService)
13 - Emergency alerts (CellBroadcastReceiver)
14 - External Storage (ExternalStorageProvider)
15 - Files (GoogleDocumentsUIPrebuilt)
16 - Find device (FindDevice)
17 - Floating window (MiuiFreeformService)
18 - Fused Location (FusedLocation)
19 - Gallery (MiuiGallery)
20 - Input Devices (InputDevices)
21 - Intent Filter Verification Service (StatementService)
22 - LocalTransport (LocalTransport)
23 - LocationServices (beyondGnssService)
24 - Media Storage (MediaProvider)
25 - MiuiCamera (MiuiCamera)
26 - MmsService (MmsService)
27 - NetworkStack (InProcessNetworkStack)
28 - ONS (ONS)
29 - Permission controller (GooglePermissionControllerPrebuilt)
30 - Permissions (AuthManager)
31 - Phone and Messaging Storage (TelephonyProvider)
32 - Phone Services (TeleService)
33 - PlatformNetworkPermissionConfig (PlatformNetworkPermissionConfig)
34 - POCO Launcher (MiLauncherGlobal)
35 - Provision (Provision)
36 - ProxyHandler (ProxyHandler)
37 - Recorder (SoundRecorder)
38 - RtMiCloudSDK (RtMiCloudSDK)
39 - Scanner (MiuiScanner)
40 - Security (SecurityCenter)
41 - Services & feedback (MiService)
42 - Settings (MiSettings)
43 - SharedStorageBackup (SharedStorageBackup)
44 - System UI (MiuiSystemUI)
45 - User Dictionary (UserDictionaryProvider)
46 - VpnDialogs (VpnDialogs)
47 - Weather (Weather)
48 - Wfd Service (WfdService)
49 - Work Setup (ManagedProvisioning)
Code:
1 - CneApp (CneApp)
2 - com.qualcomm.qti.gpudrivers.sm8250.api29 (com.qualcomm.qti.gpudrivers.sm8250.api29)
3 - DtxService (DtxService)
4 - Eid-Service (EidService)
5 - GPU Driver Updater (com.xiaomi.ugd)
6 - IconShapeOverlay (IconShapeOverlay)
7 - IWlanService (IWlanService)
8 - QDMA (QDMA)
9 - QDMA-UI (QDMA-UI)
10 - QwesAndroidService (QwesAndroidService)
11 - SoterService (SoterService)
Code:
1 - Android System WebView (WebViewGoogle)
2 - atfwd (atfwd)
3 - CallFeatureSetting (CallFeaturesSetting)
4 - Chrome (Chrome)
5 - colorservice (colorservice)
6 - Conference URI Dialer (ConfURIDialer)
7 - Contacts (GoogleContacts)
8 - datastatusnotification (datastatusnotification)
9 - Device Info (DeviceInfo)
10 - DynamicDDSService (DynamicDDSService)
11 - embms (embms)
12 - Gboard (LatinImeGoogle)
13 - Google Contacts Sync (GoogleContactsSyncAdapter)
14 - Google Location History (GoogleLocationHistory)
15 - Google Text-to-speech Engine (GoogleTTS)
16 - Main components (ModuleMetadataGooglePrebuilt)
17 - Messages (Messages)
18 - Performance Mode (PerformanceMode)
19 - Photo Screensavers (PhotoTable)
20 - PowerOffAlarm (PowerOffAlarm)
21 - QDCM-FF (QdcmFF)
22 - QtiSystemService (QtiSystemService)
23 - QtiTelephonyService (QtiTelephonyService)
24 - remoteSimLockAuthentication (remoteSimLockAuthentication)
25 - remotesimlockservice (remotesimlockservice)
26 - Secure UI Service (com.qualcomm.qti.services.secureui)
27 - Smart-Divert (xdivert)
28 - System Helper Service (com.qualcomm.qti.services.systemhelper)
29 - Trichrome Library (TrichromeLibrary)
30 - uceShimService (uceShimService)
31 - uimgbaservice (uimgbaservice)
32 - uimlpaservice (uimlpaservice)
33 - uimremoteclient (uimremoteclient)
34 - uimremoteserver (uimremoteserver)
Code:
1 - Android Setup (GoogleRestore)
2 - Android Setup (GoogleRestore)
3 - Assistant (GoogleAssistant)
4 - Carrier Services (CarrierServices)
5 - CarrierConfig (CarrierConfig)
6 - ConfigUpdater (ConfigUpdater)
7 - Device Health Services (Turbo)
8 - Digital Wellbeing (Wellbeing)
9 - dpmserviceapp (dpmserviceapp)
10 - Emergency information (EmergencyInfo)
11 - GmsCore (GmsCore)
12 - Google (Velvet)
13 - Google One Time Init (GoogleOneTimeInitializer)
14 - Google Partner Setup (GooglePartnerSetup)
15 - Google Play Store (Phonesky)
16 - Google Services Framework (GoogleServicesFramework)
17 - ims (ims)
18 - LTE Broadcast Manager (QAS DVC MSP)
19 - Market Feedback Agent (GoogleFeedback)
20 - OK Google enrollment (HotwordEnrollmentOKGoogleHEXAGON)
21 - Phone (GoogleDialer)
22 - Search Engine Selector (SearchSelector)
23 - SecCamService (seccamservice)
24 - Settings Suggestions (SettingsIntelligence)
25 - Storage Manager (StorageManager)
26 - WallpaperCropper (WallpaperCropper)
27 - X Google enrollment (HotwordEnrollmentXGoogleHEXAGON)
Any help would be appreciated.
Zelbess said:
Using Debloater by veez21 i want to debloat global/european official firmware for POCO F2 Pro.
I already removed and everything working fine:
More to remove left:
Any help would be appreciated.
Click to expand...
Click to collapse
I do think if u manage to remove all this packages u'll not be able to reboot :laugh:
I see a lot of miui/google's crap and I absolute understand why u want to get rid off. But do not forget those are system apps.
They'll be always here if u set up a new user like second space or as u upgrade to a new OTA.
It's really time consuming for so little
Flash xiaomi eu if u fancy stay stock imo
Good information you can find here.
Succes!
Timmy_01 said:
Good information you can find here.
Succes!
Click to expand...
Click to collapse
https://play.google.com/store/apps/details?id=com.learnpainless.disable_system_apps
I worked with adb and debloated as many unwanted apps, but then I came into this app and it's working like debloating via adb
Zelbess said:
Using Debloater by veez21 i want to debloat global/european official firmware for POCO F2 Pro.
I already removed and everything working fine:
Code:
1 - AutoRegistration
2 - Basic Daydreams
3 - Calculator
4 - Facebook App Manager
5 - GetApps
6 - Joyose
7 - Lens
8 - Log generator
9 - Mi Account
10 - Mi Coin
11 - Mi Connect Service
12 - Mi Pay
13 - Mi Video
14 - MiCloudSync
15 - MiuiDaemon
16 - msa
17 - Notes
18 - PartnerNetflixActivation
19 - Print Service Recommendation Service
20 - Print Spooler
21 - Quick apps Service Framework
22 - System printing service
23 - Xiaomi Cloud
24 - Xiaomi service framework
25 - Xiaomi Service Framework Keeper
26 - Xiaomi SIM Activation Service
27 - XiaomiModemDebugService
28 - Live Wallpaper Picker
29 - Bookmark Provider
30 - BTCIT
31 - MiAudioVisual
32 - MIUI security components
33 - Android Q Easter Egg
34 - CIT
35 - HybridAccessory
36 - WMService
37 - WallpaperBackup
38 - Mi Pay
39 - Backup
40 - BackupRestoreConfirmation
41 - Browser Services
42 - Cloud backup
43 - CloudServiceSysbase
44 - Facebook App Installer
45 - Facebook Services
46 - Games
47 - Mi Browser
48 - Mi Share
49 - Music
50 - PartnerBookmarksProvider
51 - ShareMe
52 - Tags
53 - Yellow pages
54 - Calendar
55 - Gmail
56 - Google One
57 - Google Pay
58 - Maps
59 - YouTube
More to remove left:
Code:
1 - Android Shared Library (GoogleExtShared)
2 - Battery and performance (PowerKeeper)
3 - Bluetooth (Bluetooth)
4 - Bluetooth MIDI Service (BluetoothMidiService)
5 - CameraTools (CameraTools)
6 - CaptivePortalLogin (PlatformCaptivePortalLogin)
7 - CarrierDefaultApp (CarrierDefaultApp)
8 - Cast (MiLinkService2)
9 - Cast (MiLinkService2)
10 - Certificate Installer (CertInstaller)
11 - Clock (DeskClock)
12 - Companion Device Manager (CompanionDeviceManager)
13 - Compass (MiuiCompass)
14 - CQR (com.miui.qr)
15 - CtsShimPrebuilt (CtsShimPrebuilt)
16 - Delmar Fingerprint (GFDelmarSetting)
17 - Earphones (MiSound)
18 - Feedback (MiuiBugReport)
19 - FIDO UAF1.0 ASM (FidoAuthen)
20 - FIDO UAF1.0 Client (FidoClient)
21 - File Manager (FileExplorerGlobal)
22 - FileExplorer old (FileExplorer old)
23 - Frequent phrases (FrequentPhrase)
24 - Fused Location Provider (FusedLocationProvider)
25 - GPS location (ConnectivityNPI)
26 - HomeLayout (GlobalLayout)
27 - HTML Viewer (HTMLViewer)
28 - karaoke (MiuiAudioMonitor)
29 - Key Chain (KeyChain)
30 - MConnService (VsimCore)
31 - MIUI Bluetooth (MiuiBluetooth)
32 - MIUI SDK (miui)
33 - MiuiBiometric (MiuiBiometric)
34 - miuisystem (miuisystem)
35 - MiuiSystemUIPlugin (MiuiSystemUIPlugin)
36 - MODEM test tools (ModemTestBox)
37 - Nfc Service (NQNfcNci)
38 - Notifications (NotificationCenter)
39 - OOBHelper (OOBHelper)
40 - OsuLogin (OsuLogin)
41 - Package installer (GlobalPackageInstaller)
42 - PacProcessor (PacProcessor)
43 - PAI (PlayAutoInstallStubApp)
44 - Power Detector (PowerChecker)
45 - QColor (QColor)
46 - Quick ball (TouchAssistant)
47 - Screen Recorder (MiuiScreenRecorder)
48 - SecureElement (SecureElement)
49 - Security Core Component (SecurityCoreAdd)
50 - Sim App Dialog (SimAppDialog)
51 - SIM toolkit (Stk)
52 - SimContacts (SimContact)
53 - slaservice (slaservice)
54 - System apps updater (SystemAppUpdater)
55 - System service plugin (securityadd)
56 - System Tracing (Traceur)
57 - ThemeModule (ThemeModule)
58 - Themes (ThemeManager)
59 - Updater (Updater)
60 - WallPaper (MiWallpaper)
61 - WAPPushManager (WAPPushManager)
62 - workloadclassifier (workloadclassifier)
Code:
1 - Android Services Library (GoogleExtServicesPrebuilt)
2 - AudioEffect (MusicFX)
3 - Blocked Numbers Storage (BlockedNumberProvider)
4 - Bokeh (MiuiExtraPhoto)
5 - Calendar storage (CalendarProvider)
6 - Call Log Backup/Restore (CallLogBackup)
7 - Call Management (Telecom)
8 - Cleaner (CleanMaster)
9 - Contacts Storage (ContactsProvider)
10 - Downloads (DownloadProvider)
11 - Downloads (DownloadProvider)
12 - Dynamic System Updates (DynamicSystemInstallationService)
13 - Emergency alerts (CellBroadcastReceiver)
14 - External Storage (ExternalStorageProvider)
15 - Files (GoogleDocumentsUIPrebuilt)
16 - Find device (FindDevice)
17 - Floating window (MiuiFreeformService)
18 - Fused Location (FusedLocation)
19 - Gallery (MiuiGallery)
20 - Input Devices (InputDevices)
21 - Intent Filter Verification Service (StatementService)
22 - LocalTransport (LocalTransport)
23 - LocationServices (beyondGnssService)
24 - Media Storage (MediaProvider)
25 - MiuiCamera (MiuiCamera)
26 - MmsService (MmsService)
27 - NetworkStack (InProcessNetworkStack)
28 - ONS (ONS)
29 - Permission controller (GooglePermissionControllerPrebuilt)
30 - Permissions (AuthManager)
31 - Phone and Messaging Storage (TelephonyProvider)
32 - Phone Services (TeleService)
33 - PlatformNetworkPermissionConfig (PlatformNetworkPermissionConfig)
34 - POCO Launcher (MiLauncherGlobal)
35 - Provision (Provision)
36 - ProxyHandler (ProxyHandler)
37 - Recorder (SoundRecorder)
38 - RtMiCloudSDK (RtMiCloudSDK)
39 - Scanner (MiuiScanner)
40 - Security (SecurityCenter)
41 - Services & feedback (MiService)
42 - Settings (MiSettings)
43 - SharedStorageBackup (SharedStorageBackup)
44 - System UI (MiuiSystemUI)
45 - User Dictionary (UserDictionaryProvider)
46 - VpnDialogs (VpnDialogs)
47 - Weather (Weather)
48 - Wfd Service (WfdService)
49 - Work Setup (ManagedProvisioning)
Code:
1 - CneApp (CneApp)
2 - com.qualcomm.qti.gpudrivers.sm8250.api29 (com.qualcomm.qti.gpudrivers.sm8250.api29)
3 - DtxService (DtxService)
4 - Eid-Service (EidService)
5 - GPU Driver Updater (com.xiaomi.ugd)
6 - IconShapeOverlay (IconShapeOverlay)
7 - IWlanService (IWlanService)
8 - QDMA (QDMA)
9 - QDMA-UI (QDMA-UI)
10 - QwesAndroidService (QwesAndroidService)
11 - SoterService (SoterService)
Code:
1 - Android System WebView (WebViewGoogle)
2 - atfwd (atfwd)
3 - CallFeatureSetting (CallFeaturesSetting)
4 - Chrome (Chrome)
5 - colorservice (colorservice)
6 - Conference URI Dialer (ConfURIDialer)
7 - Contacts (GoogleContacts)
8 - datastatusnotification (datastatusnotification)
9 - Device Info (DeviceInfo)
10 - DynamicDDSService (DynamicDDSService)
11 - embms (embms)
12 - Gboard (LatinImeGoogle)
13 - Google Contacts Sync (GoogleContactsSyncAdapter)
14 - Google Location History (GoogleLocationHistory)
15 - Google Text-to-speech Engine (GoogleTTS)
16 - Main components (ModuleMetadataGooglePrebuilt)
17 - Messages (Messages)
18 - Performance Mode (PerformanceMode)
19 - Photo Screensavers (PhotoTable)
20 - PowerOffAlarm (PowerOffAlarm)
21 - QDCM-FF (QdcmFF)
22 - QtiSystemService (QtiSystemService)
23 - QtiTelephonyService (QtiTelephonyService)
24 - remoteSimLockAuthentication (remoteSimLockAuthentication)
25 - remotesimlockservice (remotesimlockservice)
26 - Secure UI Service (com.qualcomm.qti.services.secureui)
27 - Smart-Divert (xdivert)
28 - System Helper Service (com.qualcomm.qti.services.systemhelper)
29 - Trichrome Library (TrichromeLibrary)
30 - uceShimService (uceShimService)
31 - uimgbaservice (uimgbaservice)
32 - uimlpaservice (uimlpaservice)
33 - uimremoteclient (uimremoteclient)
34 - uimremoteserver (uimremoteserver)
Code:
1 - Android Setup (GoogleRestore)
2 - Android Setup (GoogleRestore)
3 - Assistant (GoogleAssistant)
4 - Carrier Services (CarrierServices)
5 - CarrierConfig (CarrierConfig)
6 - ConfigUpdater (ConfigUpdater)
7 - Device Health Services (Turbo)
8 - Digital Wellbeing (Wellbeing)
9 - dpmserviceapp (dpmserviceapp)
10 - Emergency information (EmergencyInfo)
11 - GmsCore (GmsCore)
12 - Google (Velvet)
13 - Google One Time Init (GoogleOneTimeInitializer)
14 - Google Partner Setup (GooglePartnerSetup)
15 - Google Play Store (Phonesky)
16 - Google Services Framework (GoogleServicesFramework)
17 - ims (ims)
18 - LTE Broadcast Manager (QAS DVC MSP)
19 - Market Feedback Agent (GoogleFeedback)
20 - OK Google enrollment (HotwordEnrollmentOKGoogleHEXAGON)
21 - Phone (GoogleDialer)
22 - Search Engine Selector (SearchSelector)
23 - SecCamService (seccamservice)
24 - Settings Suggestions (SettingsIntelligence)
25 - Storage Manager (StorageManager)
26 - WallpaperCropper (WallpaperCropper)
27 - X Google enrollment (HotwordEnrollmentXGoogleHEXAGON)
Any help would be appreciated.
Click to expand...
Click to collapse
useful list! I have a Redmi 9A and uninstalled most of these apps, it feels fresh and new now
I tried removing some of the non-tested ones and it drove me to a boot loop a few times lmao

Categories

Resources