-
Notifications
You must be signed in to change notification settings - Fork 25
Commit
This commit does not belong to any branch on this repository, and may belong to a fork outside of the repository.
fix(crash): Fix "does not contain a valid DateToken" crash
- Loading branch information
Showing
5 changed files
with
18 additions
and
3 deletions.
There are no files selected for viewing
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -0,0 +1,13 @@ | ||
# https://github.com/tony19/logback-android/issues/344 | ||
# https://github.com/BeTomorrow/react-native-file-logger/issues/71 | ||
# | ||
# @noproxy finding about Proguard enabled making logback-android crash: | ||
# | ||
# AGP enables R8 full mode by default since 8.0.0. | ||
# It affects all logback-android versions. | ||
# And the R8 full mode has some behaviors difference, and the relevant change is: | ||
# The default constructor (<init>()) is not implicitly kept when a class is kept. | ||
# | ||
# This rules prevents crash on release mode Proguard enabled. | ||
|
||
-keepclassmembers class ch.qos.logback.core.rolling.helper.* { <init>(); } |
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Some generated files are not rendered by default. Learn more about how customized files appear on GitHub.
Oops, something went wrong.
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters