[GUIDE] Disabling stock apps on the G2 (and other NAND locked devices) - G2 and Desire Z Android Development

As promised on Twitter (@paulobrien), here's a guide on how to disable your chosen stock junk-ware on your G2.
Normally, you would remove stock apps by deleting the APKs from /system/app, however on the G2 this is not possible due to it's NAND protection. On reboot the apps will just re-appear, so that's no good. You could delete them on every boot via a script, but that's a bit kludgey... there has to be a better way right? RIGHT!
Internally, Android manages installed apps via something called 'Package Manager'. Package Manager (PM) references installed apps not by their filename or displayed name but by their internal package name (e.g. com.google.android.apps.maps). Handily, from a command line you can actually call Package Manager with the command 'pm', which gives you access to do some pretty cool stuff - especially if you have root - including disabling packages.
What does disabling a package do? It leaves the file on the system, but prevents the app from running or appearing in the launcher. This is actually quite cool because it means although the app isn't displaying or using any resources, if an update to the app is released, you'll still be notified by the Market. Should you choose to install the update, the package will be re-enabled, after which you can then disable it again if you choose. Neat eh?
So, let me give you a few examples of how you'd disable packages. Firstly you need to have temproot on your device (use VISIONary for this), and open a command shell. You can do this either via 'adb shell' on your PC, or using 'Connectbot' or 'Terminal Emulator' on your device (if you're feeling particularly sadistic). The shell needs to be elevated to root in order to use disable functionality, so type 'su'. You know if you are elevated because the prompt is a '#' instead of a '$'.
In order to disable a package, you first need to know the name of the package. pm has a function to list installed packages... simply type 'pm list packages' (obvious huh!). The output will look something like this:
Code:
# pm list packages
package:com.google.android.location
package:com.tmobile.selfhelp
package:com.android.voicedialer
package:com.android.defcontainer
package:com.android.launcher
package:com.google.android.maps.mytracks
package:com.android.debugtool
package:com.android.contacts
package:com.android.phone
package:com.tmobile.userkeystool
package:com.android.calculator2
package:com.android.htmlviewer
package:com.android.providers.calendar
package:com.android.bluetooth
package:com.android.calendar
package:com.android.browser
package:com.android.music
package:com.google.tts
package:com.android.email.policy
package:com.android.qxdmlog
package:com.android.mms
package:com.android.provision
package:com.htc.copyright
package:com.android.providers.media
package:com.android.certinstaller
package:com.google.android.deskclock
package:com.android.updater
package:com.android.settings
package:com.google.android.carhome
package:com.google.android.street
package:com.google.android.apps.genie.geniewidget
package:com.facebook.katana
package:com.google.android.googlequicksearchbox
package:com.android.providers.drm
package:com.adobe.flashplayer
package:com.android.musicvis
package:com.google.android.apps.unveil
package:com.google.android.apps.listen
package:com.android.wallpaper.livepicker
package:com.htc.web2goshortcut
package:com.android.packageinstaller
package:com.htc.fieldtest
package:com.android.providers.telephony
package:com.android.providers.subscribedfeeds
package:com.svox.pico
package:com.android.email
package:com.google.android.apps.maps
package:com.google.android.latinimetutorial
package:com.android.providers.settings
package:com.android.magicsmoke
package:com.android.providers.downloads
package:com.amazon.mp3
package:com.android.server.vpn
package:com.google.android.apps.googlevoice
package:com.photobucket.android
package:com.android.soundrecorder
package:com.htc.android.htcsetupwizard
package:com.android.vending.updater
package:com.android.inputmethod.latin
package:com.google.android.partnersetup
package:com.android.cardock
package:com.qo.android.oeme
package:com.google.android.voicesearch
package:com.google.android.apps.finance
package:com.google.android.feedback
package:com.google.android.apps.shopper
package:com.google.android.talk
package:com.htc.htcMessageUploader
package:com.cooliris.media
package:com.android.stk
package:com.android.providers.userdictionary
package:com.android.setupwizard
package:android.tts
package:com.google.android.stardroid
package:com.twitter.android
package:com.google.android.syncadapters.calendar
package:android
package:com.android.providers.contacts
package:com.android.protips
package:com.google.android.apps.uploader
package:com.google.android.apps.translate
package:com.android.providers.applications
package:com.android.vending
package:com.google.android.gm
package:com.swype.android.inputmethod
package:com.android.providers.htcCheckin
package:com.android.wallpaper
package:com.android.camera
package:com.google.android.youtube
package:com.google.earth
package:com.google.android.gsf
package:com.google.android.syncadapters.contacts
package:com.google.android.backup
#
Most of the names are pretty self explanatory... you can work out what you want to get rid of.
To disable an app, you use the 'pm disable' command with the package name. I wanted to disable the T-Mo App, MyTracks, Goggles, Listen, Web2Go, Amazon MP3, Google Voice, Photobucket, the Setup icon, Finance, Twitter and Translate, so I did this...
Code:
pm disable com.tmobile.selfhelp
pm disable com.google.android.maps.mytracks
pm disable com.google.android.apps.unveil
pm disable com.google.android.apps.listen
pm disable com.htc.web2goshortcut
pm disable com.amazon.mp3
pm disable com.google.android.apps.googlevoice
pm disable com.photobucket.android
pm disable com.htc.android.htcsetupwizard
pm disable com.google.android.apps.finance
pm disable com.twitter.android
pm disable com.google.android.apps.translate
#
...which returned...
Code:
#Package com.tmobile.selfhelp new state: disabled
# Package com.google.android.maps.mytracks new state: disabled
# Package com.google.android.apps.unveil new state: disabled
# Package com.google.android.apps.listen new state: disabled
# Package com.htc.web2goshortcut new state: disabled
# Package com.amazon.mp3 new state: disabled
# Package com.google.android.apps.googlevoice new state: disabled
# Package com.photobucket.android new state: disabled
# Package com.htc.android.htcsetupwizard new state: disabled
# Package com.google.android.apps.finance new state: disabled
# Package com.twitter.android new state: disabled
...and that's it, job done!
You'll need to restart your Launcher to see the changes (you can do this from Settings -> Applications -> Launcher -> Force Stop) and then you're done!
P

Wow this is good stuff.....thanks!

This disables them from starting up and running if phone is rebooted and not running temproot? Or do we have to put these cmd lines in again once rebooted?
Sent from my T-Mobile G2 using XDA App

Nice tip, thanks.

Great tip! Thanks!
But...dude, you disabled some of my most frequently used apps. Google Voice, Twitter, Goggles, Listen...I use all of those apps every day. But Photobucket, MyAccount, Facebook, all killed.

rhodes588 said:
This disables them from starting up and running if phone is rebooted and not running temproot? Or do we have to put these cmd lines in again once rebooted?
Sent from my T-Mobile G2 using XDA App
Click to expand...
Click to collapse
This actually makes changes to the packages file on /data, so the NAND protection doesn't matter.
i.e. - you only have to do it once.
P

ryaninc said:
Great tip! Thanks!
But...dude, you disabled some of my most frequently used apps. Google Voice, Twitter, Goggles, Listen...I use all of those apps every day. But Photobucket, MyAccount, Facebook, all killed.
Click to expand...
Click to collapse
Voice - doesn't work in UK
Twitter - Seesmic > Official App
Goggles - Meh
Listen - Meh
P

Nice. Thanks. Worked great.
Sent from my T-Mobile G2 using XDA App

How to undo?
pm able?
And is this the code tmobile used long ago to hide/show the myfaves app?
Either way great find
Sent from my T-Mobile G2 using XDA App

P, you are the man.

pm enable (package name) to undo
Also, this doesn't work for com.amazon.mp3. Perhaps it has something to do with it running as a service?
Great work Paul. Everytime I saw that Photobucket app it made me throw up in my mouth a little bit.
Sent from my T-Mobile G2 using XDA App

seancneal said:
pm enable (package name) to undo
Also, this doesn't work for com.amazon.mp3. Perhaps it has something to do with it running as a service?
Great work Paul. Everytime I saw that Photobucket app it made me throw up in my mouth a little bit.
Sent from my T-Mobile G2 using XDA App
Click to expand...
Click to collapse
It should do... in fact it DOES on my device.
Have you tried doing 'pm enable com.amazon.mp3' then 'pm disable com.amazon.mp3'?
P

After I updated Amazon MP3, I couldn't disable it either!
The fix was to do this...
Code:
#cat /data/system/packages.xml|grep com.amazon.mp3
...which returned this...
Code:
<package name="com.amazon.mp3" codePath="/data/app/com.amazon.mp3-1.apk" flags="1" ts="1287142896000" version="800022" userId="10049" enabled="false" installer="com.google.android.feedback">
<item name="com.amazon.mp3.client.activity.LauncherActivity" />
<item name="com.amazon.mp3.client.receiver.FirstBootReceiver" />
<item name="com.amazon.mp3.service.DownloadService" />
<item name="com.amazon.mp3.client.activity.IntentProxyActivity" />
<item name="com.amazon.mp3.client.receiver.RetryDownloadsReceiver" />
<updated-package name="com.amazon.mp3" codePath="/system/app/amazonmp3.apk" ts="1284540940000" version="800019" userId="10049">
...after which I manually disabled the launcher activity...
Code:
#pm disable com.amazon.mp3/com.amazon.mp3.client.activity.LauncherActivity
...and it's all good!
In an ideal world you'd probably disable all the activities (or you could be able to use a wildcard).
P

Thanks again Paul! Disabling Amazon MP3 now...

seancneal said:
Thanks again Paul! Disabling Amazon MP3 now...
Click to expand...
Click to collapse
I'll probably rustle up a script to automate the extended part of the process, to ensure apps are completely disabled...
P

paulobrien said:
I'll probably rustle up a script to automate the extended part of the process, to ensure apps are completely disabled...
P
Click to expand...
Click to collapse
That would be great. I went ahead and disabled all of the com.amazon.mp3 activities, but Amazon MP3 still shows up under "Running" applications after a reboot. It's gone from the app drawer, though!

Paul is Jesus reborned! You the man Paul!

Works beautifully Paul, thanks!!!

seancneal said:
That would be great. I went ahead and disabled all of the com.amazon.mp3 activities, but Amazon MP3 still shows up under "Running" applications after a reboot. It's gone from the app drawer, though!
Click to expand...
Click to collapse
Do an 'adb pull /data/system/packages.xml' to your PC, have a look through and double check the 'BOOTCOMPLETE' activity is disabled.
That's obviously the one that is making it run on startup.
P

paulobrien said:
I'll probably rustle up a script to automate the extended part of the process, to ensure apps are completely disabled...
P
Click to expand...
Click to collapse
If you could that would be great!

Related

S3 Camera App Name

Hey guys,
Can anyone grab me the name of the stock camera app? Should be something like com.samsung.camera.
You can get it with an application called APK Extractor from the Play Store.
I need this info for work, so I would really appreciate it.
FYI: I manage devices via an MDM, built a general profile to allow apps, but forgot that apps have different names across different devices.
The app is enabled under the wrong name for this device and I need the name so I can add it to the MDM.
Thanks a lot!
You mean package name**
It's com.sec.android.app.camera
CNexus said:
You mean package name**
It's com.sec.android.app.camera
Click to expand...
Click to collapse
Thank you my good sir

How to watch Amazon prime video without the launcher ?

I deleted the Amazon launcher so I could use fire starter since it's quicker and all my apps are just a few clicks away.
I usually don't watch prime video, but they have a series I would like to watch.
How can I access prime video. I tried installing the prime video apk as an alternative to the launcher but it wouldn't install.
--
Anyone have the launcher apk so I can reinstall it temporarily.
I had the same problem, unfortunately you can't (as long as I know) it's been if you keep the Amazon launcher
mijorus said:
I had the same problem, unfortunately you can't (as long as I know) it's been if you keep the Amazon launcher
Click to expand...
Click to collapse
https://www.kodinerds.net/index.php/Thread/44211-Release-Amazon-Prime-Instant-Video/?pageNo=1
mijorus said:
I had the same problem, unfortunately you can't (as long as I know) it's been if you keep the Amazon launcher
Click to expand...
Click to collapse
Actually on my FTV Stick 2 I have a package called com.amazon.amazonvideo.livingroom.firetv which is accessible via TVLauncher 3 (a 3rd party launcher). It works just like the standard Android TV app.
UPDATE: I tried it with AppStarter and it works fine!
freshjr said:
I deleted the Amazon launcher so I could use fire starter since it's quicker and all my apps are just a few clicks away.
I usually don't watch prime video, but they have a series I would like to watch.
How can I access prime video. I tried installing the prime video apk as an alternative to the launcher but it wouldn't install.
--
Anyone have the launcher apk so I can reinstall it temporarily.
Click to expand...
Click to collapse
Here are some pictures!
mijorus said:
I had the same problem, unfortunately you can't (as long as I know) it's been if you keep the Amazon launcher
Click to expand...
Click to collapse
rockon999 said:
Here are some pictures!
Click to expand...
Click to collapse
could you please provide com.amazon.amazonvideo.livingroom.firetv as APK ?
rockon999 said:
Here are some pictures!
Click to expand...
Click to collapse
How can you access the settings?
uggh I have that apk, but it won't open.
I cannot reinstall the launcher since it already exists.
Under package manager it shows up as an uninstalled package.
Check out my adb commands
pm install /system/priv-app/com.amazon.tv.launcher/com.amazon.tv.launcher.apk
pkg: /system/priv-app/com.amazon.tv.launcher/com.amazon.tv.launcher.apk
Failure [INSTALL_FAILED_ALREADY_EXISTS]
Click to expand...
Click to collapse
[email protected]:/ $ pm list packages -u | grep "launcher"
package:com.amazon.tv.launcher
package:com.baronkiko.launcherhijack
Click to expand...
Click to collapse
EDIT: This seems to have worked.
pm install -r /system/priv-app/com.amazon.tv.launcher/com.amazon.tv.launcher.apk
pkg: /system/priv-app/com.amazon.tv.launcher/com.amazon.tv.launcher.apk
Success
Click to expand...
Click to collapse
but it is still showing up in the pm uninstalled list.... /???
edit2:
these assholes, LOL
[email protected]:/ $ pm enable --user 13 com.amazon.tv.launcher
Package com.amazon.tv.launcher new state: disabled
[email protected]:/ $ pm enable --user 0 com.amazon.tv.launcher
Error: java.lang.SecurityException: Permission Denial: attempt to change component state from pid=14045, uid=2000, package uid=32080
Click to expand...
Click to collapse
moving onto different approach.
Edit:
Managed to install the tablet version of the amazon videos apk, and it crashed on open
Tablet Version: com.amazon.avod.thirdpartyclient
Original Version: com.amazon.amazonvideo.livingroom.firetv
The original one doesnt even crash ... it just doesn't do anything when opened
@rockon999 do you have anything else installed?
If you never uninstalled your launcher, I can see the launcher as being the dependency.
I seem to be missing some dependancy
Edit:
I got the tablet version on the Amazon Video app open BUT
Error Code: UNKNOWN_DEVICE_TYPE_ID
... can anyone help me bypass this?
--
I think I found where it the variable is defined
Code:
const-string/jumbo v2, "deviceTypeId"
What
What is the prefix that defines this variable?
freshjr said:
uggh I have that apk, but it won't open.
I cannot reinstall the launcher since it already exists.
Under package manager it shows up as an uninstalled package.
Check out my adb commands
EDIT: This seems to have worked.
but it is still showing up in the pm uninstalled list.... /???
edit2:
these assholes, LOL
moving onto different approach.
Edit:
Managed to install the tablet version of the amazon videos apk, and it crashed on open
Tablet Version: com.amazon.avod.thirdpartyclient
Original Version: com.amazon.amazonvideo.livingroom.firetv
The original one doesnt even crash ... it just doesn't do anything when opened
@rockon999 do you have anything else installed?
If you never uninstalled your launcher, I can see the launcher as being the dependency.
I seem to be missing some dependancy
Edit:
I got the tablet version on the Amazon Video app open BUT
Error Code: UNKNOWN_DEVICE_TYPE_ID
... can anyone help me bypass this?
--
I think I found where it the variable is defined
Code:
const-string/jumbo v2, "deviceTypeId"
What
What is the prefix that defines this variable?
Click to expand...
Click to collapse
My launcher is "uninstalled" for my user. I have Google Play Services installed but I don't set how that would affect it. Be careful. There are two prime video apks/applications on the Fire TV Stick 2. One is for the launching of videos from the launcher and one is for actual standalone viewing. Look in your chosen launcher for both and try both. I think the incorrect one only says "Video" w/ the correct icon.
com.amazon.amazonvideo.livingroom.nvidia is working very well on Fire TV
rainman74 said:
com.amazon.amazonvideo.livingroom.nvidia is working very well on Fire TV
Click to expand...
Click to collapse
thanks for the tip! Lets give it a shot!
@freshjr Here is my device's APK...
https://drive.google.com/file/d/1vpwp0LDiVyEatFD7jOhaVf31nUILiwJo
rockon999 said:
@freshjr Here is my device's APK...
https://drive.google.com/file/d/1vpwp0LDiVyEatFD7jOhaVf31nUILiwJo
Click to expand...
Click to collapse
That apk is not working on newer firmwares.
Try com.amazon.amazonvideo.livingroom.nvidia
freshjr said:
uggh I have that apk, but it won't open.
I cannot reinstall the launcher since it already exists.
Under package manager it shows up as an uninstalled package.
Check out my adb commands
EDIT: This seems to have worked.
but it is still showing up in the pm uninstalled list.... /???
edit2:
these assholes, LOL
moving onto different approach.
Edit:
Managed to install the tablet version of the amazon videos apk, and it crashed on open
Tablet Version: com.amazon.avod.thirdpartyclient
Original Version: com.amazon.amazonvideo.livingroom.firetv
The original one doesnt even crash ... it just doesn't do anything when opened
@rockon999 do you have anything else installed?
If you never uninstalled your launcher, I can see the launcher as being the dependency.
I seem to be missing some dependancy
Edit:
I got the tablet version on the Amazon Video app open BUT
Error Code: UNKNOWN_DEVICE_TYPE_ID
... can anyone help me bypass this?
--
I think I found where it the variable is defined
Code:
const-string/jumbo v2, "deviceTypeId"
What
What is the prefix that defines this variable?
Click to expand...
Click to collapse
Have you solved this ???? I have the same problem
https://forum.xda-developers.com/fire-tv/themes-apps/app-amazon-prime-video-fire-tv-t3762965
Amazon Prime Video Kodi addon
You can use Amazon Prime Video Kodi addon as well to take full experience. I'm using it since last few months and it is working fine

LG Exalt LTE and Kyocera 4G Flip Phones App / APK Install Hack

Does anyone here know of a way to install apks on the LG Exalt and kyocera flip phones?
reserved
Hey there you said you have a way you changed your mind?
Bret5 said:
Hey there you said you have a way you changed your mind?
Click to expand...
Click to collapse
I do not know what the original poster meant to write but checkout apps4flip, they are a website which provides apks for 4G Flip phones.
Hope this helps.
apps for flip
Apps4flip.com is only a very limited amount of
Apps and there is no messaging apps there
Also wondering
I would also like to find the answer to this exploit. I was at apps4flip before I came here looking. At apps4flip it explicitly states in the faq that others have found this apk signature exploit and I expected that if I was going to find these 'others' this would be the place.
apk on flip
if you send the apk file via bluetooth the installing process is starting, then you get a message that u can't install from unknown sources.
if you could solve this, you could put up anything
Decompile the app.
Change the package name in androidmanifest.xml to com.android.cts.appname.
Recompile the app.
Sign the app with any generic debug certificate.
App will now install to any android based flip phone.
(CTS stands for compatibility test suite, and if you rename the package as such it will bypass the phones signature check, therefore allowing the app to install.)
BochurJoeShmoe said:
Decompile the app.
Change the package name in androidmanifest.xml to com.android.cts.appname.
Recompile the app.
Sign the app with any generic debug certificate.
App will now install to any android based flip phone.
(CTS stands for compatibility test suite, and if you rename the package as such it will bypass the phones signature check, therefore allowing the app to install.)
Click to expand...
Click to collapse
Just the package name needs to be changed? Like could I just do this with APK editor -> common edit -> change package name?
i've done all of the steps in your post but i can't seem to figure out how to sign apps. with a generic debug certificate. could you explain how this is done?
It worked!
gabe001010 said:
i've done all of the steps in your post but i can't seem to figure out how to sign apps. with a generic debug certificate. could you explain how this is done?
Click to expand...
Click to collapse
First want to say thanx again to BochurJoeShmoe. Now for gabe, Use APK editor- select file-> common edit -> change package name-> save -and your all done!
Knightrider_kit said:
First want to say thanx again to BochurJoeShmoe. Now for gabe, Use APK editor- select file-> common edit -> change package name-> save -and your all done!
Click to expand...
Click to collapse
thanks so much !! i'll try it later today
From what website can I get the apk apps from ex. What's app and robinhood app and waze
I did what you said, and the app installed. the issue is that it crashes right after the app is opened. I'm using a kyocera cadence
Which app can we use for this, can you post a link?
Knightrider_kit said:
First want to say thanx again to BochurJoeShmoe. Now for gabe, Use APK editor- select file-> common edit -> change package name-> save -and your all done!
Click to expand...
Click to collapse
which "online apk-editor" is the most recommended
---------- Post added at 04:22 AM ---------- Previous post was at 03:43 AM ----------
Knightrider_kit said:
First want to say thanx again to BochurJoeShmoe. Now for gabe, Use APK editor- select file-> common edit -> change package name-> save -and your all done!
Click to expand...
Click to collapse
which "online apk-editor" is the most recommended
APK editor
[email protected] said:
which "online apk-editor" is the most recommended
---------- Post added at 04:22 AM ---------- Previous post was at 03:43 AM ----------
which "online apk-editor" is the most recommended
Click to expand...
Click to collapse
Not online, APK editor pro the program
Can we get more in details in how I'm the world u can do this for some one that doesn't under stand computers like were do I get the apps from can some one pls start from the basics ! ?
How do you add a cursor? the apps install and open but then i can't click certain buttons. (lg exalt)
Hi, Thank Y'all for help in this matter. I was wondering where I can get APK Editor? Whats the name of the App?

Disable high volume warning

Hi, I want to disable the High volume warning, I already have a solution, right now I use terminal shortcut pro and have created a shortcut to run the command
Code:
settings put global audio_safe_volume_state 0
it work great but doesn't survive a reboot so I have to run the shortcut after every reboot. I found an old thread on reddit that say adding the line
Code:
audio.safemedia.bypass=true
to build.prop can also disable the high volume warning, but the thread was so old, they were talking android 6.0
I plan to try to add this prop on boot using the magisk module MagiskHide Props Config, I know it work great because I already added a prop to reduce the media volume steps to 15 instead of 30, but i dont know if the prop
Code:
audio.safemedia.bypass=true
is still working on android 10
Another solution would be to have an app that run the terminal command
Code:
settings put global audio_safe_volume_state 0
automatically after boot, but I would prefer to add the prop line if anyone can confirm it still work on android 10
Thank you all !
Nice to know.... what's also wondering from time to time how to overcome the warning. let me know if you get it to a working solution.
Just for the last part: tasker would be the way to go.
Gesendet von meinem HD1903 mit Tapatalk
xe0r said:
Nice to know.... what's also wondering from time to time how to overcome the warning. let me know if you get it to a working solution.
Just for the last part: tasker would be the way to go.
Gesendet von meinem HD1903 mit Tapatalk
Click to expand...
Click to collapse
After 24 hours testing the audio.safemedia.bypass=true with MagiskHide Props Config, I have not seen the warning yet, but I need to test it longer to be sure it work
Just a quick update for future search, the prop
Code:
audio.safemedia.bypass=true
seem to work, I have not seen the high volume warning for the whole week, so problem solved !
Hey one question, how were you able to edit the build.prop file? Whenever I try to do so with Root Explorer, it doesn't save my changes. OnePlus 8 Pro Android 10
memocatcher said:
Hey one question, how were you able to edit the build.prop file? Whenever I try to do so with Root Explorer, it doesn't save my changes. OnePlus 8 Pro Android 10
Click to expand...
Click to collapse
Only with Magisk module MagiskHide Props Config
jacobyo7 said:
Just a quick update for future search, the prop
Code:
audio.safemedia.bypass=true
seem to work, I have not seen the high volume warning for the whole week, so problem solved!
Click to expand...
Click to collapse
Hello and thank you for finding a workaround for this stupid issue! Do you know if this is still working on android 11? After installing the module, how can I correctly set it? Thank you so much for your help
I tried setting it with termux but it's not working
addsfsds said:
I tried setting it with termux but it's not working
Click to expand...
Click to collapse
I still use it with 11 on my OP7T but I am unsure if this prop remove the audio warning or if there is no warning at all on my device. Never tried 11 wihtout the prop so IDK.
Another way you can try is the system UI tuner app on the play store, there is a setting to disable the warning under the audio & sound category. Good luck !
jacobyo7 said:
I still use it with 11 on my OP7T but I am unsure if this prop remove the audio warning or if there is no warning at all on my device. Never tried 11 wihtout the prop so IDK.
Another way you can try is the system UI tuner app on the play store, there is a setting to disable the warning under the audio & sound category. Good luck !
Click to expand...
Click to collapse
Thank you for your reply! I kept trying to no avail. Can't make it work unfortunately. When you upgraded to android 11, did you make the procedure again from scratch? Can you please explain what you did on termux?
Is the system ui app an app that it's aways on background?
Thank you so much!
addsfsds said:
Thank you for your reply! I kept trying to no avail. Can't make it work unfortunately. When you upgraded to android 11, did you make the procedure again from scratch? Can you please explain what you did on termux?
Is the system ui app an app that it's aways on background?
Thank you so much!
Click to expand...
Click to collapse
No the system UI tuner app just change some hidden android settings, it do not run in the background. The description of the app even state you can delete the app once you changed the desired setting. Read the whole description to understand how it work. Try it, I think this might be the best solution.
SystemUI Tuner - Apps on Google Play
PLEASE READ ENTIRE DESCRIPTION BEFORE INSTALLING
play.google.com
jacobyo7 said:
No the system UI tuner app just change some hidden android settings, it do not run in the background. The description of the app even state you can delete the app once you changed the desired setting. Read the whole description to understand how it work. Try it, I think this might be the best solution.
SystemUI Tuner - Apps on Google Play
PLEASE READ ENTIRE DESCRIPTION BEFORE INSTALLING
play.google.com
Click to expand...
Click to collapse
Thank you for your kind suggestion. I tried and again it didn't work, really don't know why.
addsfsds said:
Code:
settings put global audio_safe_volume_state 0
Thank you for your kind suggestion. I tried and again it didn't work, really don't know why.
Click to expand...
Click to collapse
i can confirm that no app does change the setting of safe volume limit.
All tests on rooted device from LOS14-LOS19. Tried different apps like systemuituner, safevolumelimitdisabler, volumesteps+, jamesdsp etc.
Tried to patch the global variable "safe_media_volume" like described here on a rooted device but no luck.
Just ran
[adb shell] settings put global audio_safe_volume_state 0
via adb, when the message popped up, afterits i had to confirm the nag-screen, to raise the volume. it's so weird..

New package disabler,works!!!

Hi i found new package disabler,name Alliance Shield X,is free only you must reg,works great.
Here is link https://play.google.com/store/apps/details?id=com.rrivenllc.shieldx&hl=en&gl=US
try and let me know ist works for you.
Works super.should be nice ,safe debloat list ... Tnx
Working flawlessly
There are several apps that I normally disable that are not showing up in this app. It currently shows that I only have 328 system apps and one user app (Alliance Shield), ADB AppControl shows 448 system apps and 53 user apps.
RISHI RAJ said:
Working flawlessly
Click to expand...
Click to collapse
Can you please gave me screenshot for apps to disable
airmaxx23 said:
There are several apps that I normally disable that are not showing up in this app. It currently shows that I only have 328 system apps and one user app (Alliance Shield), ADB AppControl shows 448 system apps and 53 user apps.
Click to expand...
Click to collapse
For me show all ok
maxpaynezm said:
For me show all ok
Click to expand...
Click to collapse
See if you have Bookmark Provider, Briefing and Calculator. These are the first 3 that aren't showing up for me.
Yeah have it,do you enable knox?
maxpaynezm said:
Yeah have it,do you enable knox?
Click to expand...
Click to collapse
Yes I did.
---------- Post added at 04:06 PM ---------- Previous post was at 03:53 PM ----------
maxpaynezm said:
Yeah have it,do you enable knox?
Click to expand...
Click to collapse
Are you on Android 10 or 11?
android 10
maxpaynezm said:
android 10
Click to expand...
Click to collapse
Might be that I'm on 11.
airmaxx23 said:
There are several apps that I normally disable that are not showing up in this app. It currently shows that I only have 328 system apps and one user app (Alliance Shield), ADB AppControl shows 448 system apps and 53 user apps.
Click to expand...
Click to collapse
It seems to not show apps I've disabled with ADB AppControl, such as Facebook and associated services
Cool, Thank you sharing.
Does it need to be activated?
Doesn't seem to allow data and cache clearing or am I mistaken?
Appears to be compatible with Pie as well.
The data blocking is a nice feature.
A backup PD is always good to have as time has proven:laugh:
lot of permission given to that app..... do you guys trust it....
edwardob said:
lot of permission given to that app..... do you guys trust it....
Click to expand...
Click to collapse
Like what?
This type of app needs full administrator permissions to function.
blackhawk said:
Like what?
This type of app needs full administrator permissions to function.
Click to expand...
Click to collapse
so do you trust it?.....
Makes sense that all apps wouldn't be visible on Android 11 for this particular phone.
Something slightly separate, but I had an Android 11 Pixel 3XL over a year ago, and the file managers still worked normally. On this phone, however, since upgrading to the Android 11 Beta, the file managers (I've already tried three different ones) don't work at all when you go to the non-root required drive section that stores your non-system applications (stuff you got from the Play Store). It just shows that every single folder aside from the download folder is empty now on every file manager... So something is most definitely wrong with their current hard drive storage/access on Android 11 - and that could also possibly be why certain apps aren't showing up in the package disabler.
By the way, we have Android 11 Beta4 dropping on this Tuesday (12AM EST), so the official release will probably be around Christmas time (exactly four weeks after beta 4 releases). So we'll see if either of these updates fix this goofy issue.
edwardob said:
lot of permission given to that app..... do you guys trust it....
Click to expand...
Click to collapse
edwardob said:
so do you trust it?.....
Click to expand...
Click to collapse
Tried installing it on my 10+ running on Pie.
Install ok but it wanted a login created to do -anything-
So I did but it was glitchy. Even after I created an account it didn't want to login.
Grrrrr...
I have a working PD so for now I don't need to muck with this...
Got tired of saying kind, nurturing things to it, and kicked it out:laugh:
On Beta, it works amazingly. But it is missing a few system apps like calculator and such but im guessing thats because of beta. Otherwise amazing.
This app is amazing
Just disabled over 50 useless system apps
My phone is flying now ? ?
Everything is way faster even fingerprints and face unlock
Thanks soo much

Categories

Resources