Closed edward-s closed 9 years ago
Nice catch !
We will set the allowBackup attribute to false in the next release.
Thanks =)
thank you looking forward to it
Hi @edward-s
I did not have the time to update the library, but here is a solution to set the allowBackup flag to false. It simply relies on the "replace" attributs:
<?xml version="1.0" encoding="utf-8"?>
<manifest
package="com.your.package"
xmlns:android="http://schemas.android.com/apk/res/android"
xmlns:tools="http://schemas.android.com/tools">
<application
android:allowBackup="false"
tools:replace="allowBackup">
...
</application>
</manifest>
I have just tested this solution on one of my project, and it seems to work perfectly. Please let me know if this also works for you =)
Happy coding,
Vincent.
[Edit] I will keep this issue opened until we fix it in the next release. It might be useful to other people =)
Hi,
is there any reason why you are setting the allowBackup to true in the AndroidManifest.xml?
company policy requires me to set this flag as false