-
Notifications
You must be signed in to change notification settings - Fork 0
Commit
This commit does not belong to any branch on this repository, and may belong to a fork outside of the repository.
- Loading branch information
soraefir
committed
Mar 24, 2024
1 parent
517f024
commit 796c76f
Showing
4 changed files
with
44 additions
and
7 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 |
---|---|---|
|
@@ -13,3 +13,5 @@ captures/ | |
.externalNativeBuild | ||
.cxx | ||
local.properties | ||
keystore.properties | ||
key.jks |
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 @@ | ||
# Gson uses generic type information stored in a class file when working with | ||
# fields. Proguard removes such information by default, keep it. | ||
-keepattributes Signature | ||
|
||
# This is also needed for R8 in compat mode since multiple | ||
# optimizations will remove the generic signature such as class | ||
# merging and argument removal. See: | ||
# https://r8.googlesource.com/r8/+/refs/heads/main/compatibility-faq.md#troubleshooting-gson-gson | ||
-keep class com.google.gson.reflect.TypeToken { *; } | ||
-keep class * extends com.google.gson.reflect.TypeToken | ||
|
||
# Optional. For using GSON @Expose annotation | ||
-keepattributes AnnotationDefault,RuntimeVisibleAnnotations |