truizlop / SectionedRecyclerView

An adapter to create Android RecyclerViews with sections, providing headers and footers.
806 stars 144 forks source link

Remove android:allowBackup="true" #5

Closed Sloy closed 9 years ago

Sloy commented 9 years ago

Allow apps using the library to select their own backup option without needing to override it. Libraries should't use allowBackup in theeir manifest. This provokes a build error in recent versions of the Gradle plugin when the application sets the value to false.

Temporary workaround is to add tools:replace="android:allowBackup" to the application tag in the app's manifest.

I'm creating the pull request against master because I don't see there is any other branch for development.

truizlop commented 9 years ago

Thanks, my mistake, I forgot to remove it.

Sloy commented 9 years ago

Thank you ;)