-
Notifications
You must be signed in to change notification settings - Fork 23
New issue
Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.
By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.
Already on GitHub? Sign in to your account
android:allowBackup=true is back in Release 3.0.0 #138
Comments
Hi @oorlov, Thanks for the issue report. We'll release a patch to address this issue. For the moment, you can follow the instructions in the error message to include `tools:replace="android:allowBackup" as a workaround. Thanks, |
Merged
gwhelanLD
added a commit
that referenced
this issue
Sep 3, 2021
## [3.1.1] - 2021-09-03 ### Fixed - Removed the `android:allowBackup` tag from the SDK's `AndroidManifest.xml` file to avoid requiring applications to explicitly replace the tag if given a different value. ([#138](#138)) - Changed the SDK's network detection check to consider network transport over a VPN as a connected state. This fixes an issue where the SDK would prevent network requests on a VPN due to considering the network to be unavailable. (Thanks, [lguipeng](#137)!)
Hi @oorlov, This should be resolved in the 3.1.1 release of the SDK. Thanks for the report! |
@gwhelanLD Thank you! It works well! |
Sign up for free
to join this conversation on GitHub.
Already have an account?
Sign in to comment
Describe the bug
Release 3.0.0 added
android:allowBackup=true
back to the AndroidManifest.xmlBecause of this app developers have to use
tools:replace="android:allowBackup"
as a workaround.In general libraries are not supposed to declare this specific flag (unless there is some special use for it? Maybe?)
To reproduce
allowBackup=false
intoapplication
withinAndroidManifest.xml
implementation 'com.launchdarkly:launchdarkly-android-client-sdk:3.1.0'
to theapp/build.gradle
Expected behavior
Adding
implementation 'com.launchdarkly:launchdarkly-android-client-sdk:3.1.0'
shouldn't cause build error due toallowBackup
conflictLanguage version, developer tools
AndroidStudio 4.1.3
OS/platform
OS X, but should be any
The text was updated successfully, but these errors were encountered: