You signed in with another tab or window. Reload to refresh your session.You signed out in another tab or window. Reload to refresh your session.You switched accounts on another tab or window. Reload to refresh your session.Dismiss alert
{{ message }}
This repository has been archived by the owner on Jul 22, 2024. It is now read-only.
The following line from the android manifest forces users of this library to utilize tools:replace="android:allowBackup" when switiching to android:allowBackup="false" in their manifest:
allowBackupt=true is implicit. If there's no special reason for having this explicitly added to the lib's manifest I'd suggest to drop it, leading to this:
<application android:label="@string/app_name">
Dropping the allowBackup part should not lead to any trouble as it's implicitly true and depends on the top level manifest anyway. Right now I need to add two lines to my manifest just to have allowBackup=false (1x tools:replace and 1x tools namespace import).
For the sake of completeness, this is what my manifest looks with explicit allowBackup in msa-auth:
The following line from the android manifest forces users of this library to utilize
tools:replace="android:allowBackup"
when switiching toandroid:allowBackup="false"
in their manifest:allowBackupt=true
is implicit. If there's no special reason for having this explicitly added to the lib's manifest I'd suggest to drop it, leading to this:Dropping the
allowBackup
part should not lead to any trouble as it's implicitly true and depends on the top level manifest anyway. Right now I need to add two lines to my manifest just to haveallowBackup=false
(1xtools:replace
and 1x tools namespace import).For the sake of completeness, this is what my manifest looks with explicit allowBackup in msa-auth:
This is how it would look without:
This is nothing urgent (to me) but I'll file a PR. Please leave a note how you think about this.
The text was updated successfully, but these errors were encountered: