2

Does setting android:allowBackup="false" prevents application data stored on sqlite to be accessed from rooted devices?

I have read the answers in the What is "android:allowBackup"? where I didn't found a clear answer to my question. I am asking explicitly about rooted device cases.

IldiX
  • 591
  • 1
  • 7
  • 16

1 Answers1

4

Basically "android:allowBackup" flag will let the system know whether to take backup of your application while taking the system backup. By default, it is set to "true". If you don't want to participate your application in data backup/restore infrastructure then you can simply make it false.

Please refer the documentation

Now coming to your question, this flag is nothing to do with your application database.

Happy Coding!

OneCricketeer
  • 179,855
  • 19
  • 132
  • 245
Shri
  • 91
  • 4
  • "...this flag is nothing to do with your application database." Really?! Happy Coding you too! – IldiX Feb 23 '18 at 10:15