android allowBackup to false

I want to set allowBackup of manifest.xml to false.
What should I do?

I don’t think this is the best answer you may get, but I think you can directly edit the manifest in the app bundle.

Thank you. What is the way to directly edit manifest?

  1. Change the name of your app (myApp.aab) to myApp.zip
  2. Then unzip it
  3. Look for the Android manifest and change whatever you want
  4. Zip it again, and change change the compressed file name to myApp.aab again.

That’s it :slight_smile:

1 Like

I solved it with apktool and apksigner. Thank you.

1 Like