HI, everybody, I wanted to ask if there is anyway to change the permission of this app, I have marshmallow but I can change only limitated permissions, for example I can't change the permission MODIFY_AUDIO of this app that is really bothering because changes the audio of phone without authorization.
Thank you !
xprivacy+xposed, you could use some rom toolboxes like 3c toolbox or lucky patcher to disable permissions but sometimes some permissions are re enabled by the app, the best is xprivacy
Related
Hi all,
I am trying to write an app that requires the Android permission WRITE_SECURE_SETTINGS which I know is only granted to system apps so I want to have my app push a second apk to /system/app and install after a reboot (via "su" so I understand device will need to be rooted). I can get the apk into /system/app and install fine. Then I use my first app to send messages to the helper that can use
Code:
Settings.Secure.putInt()
because the helper is a system app, which is how I imagine the excellent app Secure Settings does it.
The problem I have is that when the helper tries to call
Code:
Settings.Secure.putInt()
it crashes and I see logs saying the permission WRITE_SECURE_SETTINGS is not being given to my app (the helper).
Is it correct that only apk's signed with the system keys can have this permission? If I manage to sign my apk with these keys, will it work on any device from any manufacturer?
I'd love to know how Secure Settings does it and I've asked the devs, but I understand they wont want to give too much away.
Thanks
Got it working with using WRITE_SECURE_SETTINGS and not needing signing with system keys.
Coming along fantastic now.
???
Can you tell us how you got it working? I'm trying to turn airplane mode on and off, and need WRITE_SECURE_SETTINGS to work on 4.2 and above.
nexus_2006 said:
Can you tell us how you got it working? I'm trying to turn airplane mode on and off, and need WRITE_SECURE_SETTINGS to work on 4.2 and above.
Click to expand...
Click to collapse
Yes, would be nice to help others also
aww this thread is the first result on google
Hello,
in times of Nexus5 and 4.4 I used the permission manager to set all permissions I want random apps to have.
I declined the gps access to my banking app (German Postbank app).
Then I updated to 4.4.2 and the permission manager app stopped working.
Today I found out that the banking app could show me the cashpoint next to me. Unfortunately the banking app still doesn't seem to be able to use gps.
How can I reactivate the permissions?
...this means the permission manager does still exist.
cybercrash said:
Hello,
in times of Nexus5 and 4.4 I used the permission manager to set all permissions I want random apps to have.
I declined the gps access to my banking app (German Postbank app).
Then I updated to 4.4.2 and the permission manager app stopped working.
Today I found out that the banking app could show me the cashpoint next to me. Unfortunately the banking app still doesn't seem to be able to use gps.
How can I reactivate the permissions?
...this means the permission manager does still exist.
Click to expand...
Click to collapse
do a factory reset OR install Xposed framework and install the AppOps module and then change the permissions you want ( of course you have to be rooted to use Xposed). i don't think you have any other options.
p.s. questions should go in tht Q&A section
Just to make sure,
When installing a app (after confirm its permissions) - the persmissions like "contact", "calls", etc (all kind of permissions) - are disabled to the dev once I delete the app or he always have access to my info (at permissions) OR at the time I've download the app he have access to the permissions until I delete it and all the permissions are disable?
Usually this information/permissions are availabe to the dev automatically once I install the app or he need manualy to get into this informations?
Thanks!
Anyone have any idea about that?
no one? :\
Just additional question - If I force stop the app, will it still have access to my data (permissions) or only if its running?
Hope to get an answer some day..
I'm trying to build an application that will work like Superuser manager application, and will give/deny root premission for all the 'root' applications in my phone,
How can i send the applications that require root to ask me for permission?
I'm trying to add these 2 Java to my app, but it doesn't work, what's worng?
https://github.com/ChainsDD/Superuser/blob/master/src/com/noshufou/android/su/SuRequestActivity.java
https://github.com/ChainsDD/Superuser/blob/master/src/com/noshufou/android/su/SuRequestReceiver.java
My story beging with installing apps on stock nubia ROM which require some permissions to work.
After trying to grant permission to the newly installed app, the system prompts ' Overlay detected' again thus you are unable to set the requirements.
One solution that i found is : go to Settings>Apps>3 dots >Reset app preferences.
After that you will be able to grant permissions manually to your apps.
The only drawback is that you need to re-grant permissons manually for all your apps again whenever you need this whole method.