Kaopiz / KProgressHUD

An implement of ProgressHUD for Android, similar to MBProgressHUD, SVProgressHUD for iOS.
Apache License 2.0
1.64k stars 381 forks source link

remove allowBackup and supportsRtl attributes in library AndroidManifest.xml #35

Open ddrandy opened 6 years ago

ddrandy commented 6 years ago

.../app/src/main/AndroidManifest.xml:13:9-36 Error: Attribute application@allowBackup value=(false) from AndroidManifest.xml:9:9-36 is also present at [com.kaopiz:kprogresshud:1.1.0] AndroidManifest.xml:12:9-35 value=(true). Suggestion: add 'tools:replace="android:allowBackup"' to <application> element at AndroidManifest.xml:7:5-34:19 to override. .../app/src/main/AndroidManifest.xml:13:9-36 Error: Attribute application@supportsRtl value=(false) from AndroidManifest.xml:13:9-36 is also present at [com.kaopiz:kprogresshud:1.1.0] AndroidManifest.xml:13:9-35 value=(true). Suggestion: add 'tools:replace="android:supportsRtl"' to <application> element at AndroidManifest.xml:7:5-34:19 to override.

tevin-maxwell commented 5 years ago

You can force allowBackup to false by modifying the project AndroidManifest.xml. I did the following:

<manifest xmlns:android="http://schemas.android.com/apk/res/android" package="com.example.app" xmlns:tools="http://schemas.android.com/tools">

And <application tools:replace="android:allowBackup" android:allowBackup="false"