Reputation: 83
I am working on custom Android 11 project.
I want to grant all the permission to an specific application from Android source code.so that it hasn't been to ask user to grant permission. Like setting application has all the permission.
Is it possible to do that?
Upvotes: 0
Views: 668
Reputation: 106
Since Android 6, all permission must accepted by user. IF you are owner device you can root your device, or add your app in to flash ROM. Or you can sign your app with the same key of your device. All method to auto grant perms is hard, cause we need protect users permission Fyi about perms
Upvotes: 1