Today we are going to learn how we can disable the option to allow local storage backup using React Native.

Inherently, Expo sets the option to store local storage remotely by default:
To avoid it, we will have to set the allowBackup option to false.
To do this, we go to our app.json and put:
"android": { "allowBackup": false,...
And now we have to make an expo prebuild.
We will create the manifest with the option of backup set to false.
In the case of iOS, we can put this in the info.plist:
RCTAsyncStorageExcludeFromBackup
