Home > Enterprise >  uses permission Shared preferences
uses permission Shared preferences

Time:09-30

devs, in my android application I'm using shared preferences, my question is: do I need to add any special user permission in the file AndroidManifest.xml?

CodePudding user response:

No you don't have to. Instead of asking this question(with answer yes/no), You should be posting the error that you are getting. This way people will be able to solve your problem.

CodePudding user response:

No you don't need to add any permission either in your AndroidManifest.xml nor request any runtime permission since shared preferences xml file is stored in your app folder.

  • Related