This repository has been archived by the owner on Sep 15, 2024. It is now read-only.
-
Notifications
You must be signed in to change notification settings - Fork 2
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
1 parent
cacb706
commit ad9b302
Showing
28 changed files
with
839 additions
and
188 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 |
---|---|---|
@@ -1,21 +1,39 @@ | ||
# Add project specific ProGuard rules here. | ||
# You can control the set of applied configuration files using the | ||
# proguardFiles setting in build.gradle. | ||
# | ||
# For more details, see | ||
# http://developer.android.com/guide/developing/tools/proguard.html | ||
|
||
# If your project uses WebView with JS, uncomment the following | ||
# and specify the fully qualified class name to the JavaScript interface | ||
# class: | ||
#-keepclassmembers class fqcn.of.javascript.interface.for.webview { | ||
# public *; | ||
#} | ||
|
||
# Uncomment this to preserve the line number information for | ||
# debugging stack traces. | ||
#-keepattributes SourceFile,LineNumberTable | ||
|
||
# If you keep the line number information, uncomment this to | ||
# hide the original source file name. | ||
#-renamesourcefileattribute SourceFile | ||
# General configuration | ||
-dontwarn com.squareup.okhttp.** | ||
-dontwarn okhttp3.** | ||
-dontwarn okio.** | ||
|
||
# Optimization options | ||
-optimizationpasses 5 | ||
-dontusemixedcaseclassnames | ||
-dontskipnonpubliclibraryclasses | ||
-dontpreverify | ||
-verbose | ||
|
||
# Obfuscation options | ||
-renamesourcefileattribute SourceFile | ||
-keepattributes SourceFile,LineNumberTable | ||
-keepattributes Signature | ||
-keepattributes *Annotation* | ||
-keepparameternames | ||
-keep class **.R | ||
-keepclassmembers class **.R$* { | ||
public static <fields>; | ||
} | ||
|
||
|
||
# Keep Android specific classes and methods | ||
-keep class android.support.** { *; } | ||
-keep interface android.support.** { *; } | ||
-keep class androidx.annotation.** { *; } | ||
-keep class androidx.appcompat.widget.** { *; } | ||
-keep class androidx.lifecycle.** { *; } | ||
|
||
# Keep specific libraries (adjust as needed) | ||
-keep class com.google.gson.** { *; } | ||
-keep class org.json.** { *; } | ||
|
||
|
||
# Keep your model classes and fields (adjust as needed) | ||
-keep class id.blossom.data.model.** { *; } | ||
|
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
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
Oops, something went wrong.