【React Native】Error: Attribute application@allowBackup value=(false) from AndroidManifest.xml

  解决办法:在Android Studio修改AndroidManifest.xml文件。

  文件路径:android->app->src->debug->AndroidManifest.xml

  在manifest标签中添加   

   xmlns:tools="http://schemas.android.com/tools"

  在application标签中添加

   tools:replace="android:allowBackup"
   android:allowBackup="false"

原文地址:https://www.cnblogs.com/xjf125/p/12249428.html