The Android Debug Bridge (ADB) itself has root access (after executing the adb root command). Can that be used to give the same privileges to apps on the device? Is there a file somewhere in the system that keeps track of which user (app) has root access and can it be modified? If it helps I've already put the app in the system folder so it's regarded as a system app now.
Asked
Active
Viewed 6,147 times
1 Answers
3
Nope. Though you could use e.g. pm grant
and grant it SUPERUSER
, but that would have no effect if the app hadn't declared that in its manifest. And if it had, it wouldn't be necessary to grant it manually.
An app must actively request superuser privileges in order to gain it – and even then it only works with a superuser app in place (acting as "gate keeper") that then pops up a message for the user to confirm.

Izzy
- 91,166
- 73
- 343
- 943
SUPERUSER
withpm grant
effectively does nothing? – Raimund Krämer Nov 14 '18 at 15:48READ_LOGS
), the command would have effect. And I doubt the part of Towelroot (though theoretical one could introduce a superuser app that simply grants everything without user interaction, I wouldn't want that on any of my devices for security reasons). But please, no more discussion here. Drop into our chat room instead :) – Izzy Nov 14 '18 at 16:24