Skip to content

Commit

Permalink
Remove android: attributes from library manifest
Browse files Browse the repository at this point in the history
If an app using this library sets different values for allowBackup /
supportsRtl, the build will fail because of:

Attribute application@allowBackup value=(false) from AndroidManifest.xml:11:9-36
is also present at [com.github.sevar83:indeterminate-checkbox:1.0.5] AndroidManifest.xml:12:9-35 value=(true).

Just remove the attributes as they are not needed.
  • Loading branch information
z3ntu authored and sevar83 committed Nov 10, 2019
1 parent e116f6d commit 965fdc7
Showing 1 changed file with 1 addition and 11 deletions.
12 changes: 1 addition & 11 deletions library/src/main/AndroidManifest.xml
Original file line number Diff line number Diff line change
@@ -1,11 +1 @@
<manifest xmlns:android="http://schemas.android.com/apk/res/android"
package="com.buildware.widget.indeterm">

<application android:allowBackup="true"
android:label="@string/app_name"
android:supportsRtl="true"
>

</application>

</manifest>
<manifest package="com.buildware.widget.indeterm" />

0 comments on commit 965fdc7

Please sign in to comment.