Donate to e Foundation | Murena handsets with /e/OS | Own a part of Murena! Learn more

Verified Commit cfc90b45 authored by Marvin W.'s avatar Marvin W. 🐿️
Browse files

Ensure ProGuard does not "optimize" away our code

parent 2c5c30bd
Loading
Loading
Loading
Loading
+5 −4
Original line number Diff line number Diff line
# We use ProGuard for optimizations, obfuscation is for those who have sth to hide
-dontobfuscate
-optimizations !code/allocation/variable

# We're referencing stuff that is unknown to the system
#-libraryjar ../unifiednlp-compat/build/classes/java/main
-dontwarn java.awt.**
@@ -15,6 +11,7 @@
-dontwarn com.caverock.androidsvg.**
-dontwarn org.slf4j.**
-dontwarn org.codehaus.jackson.**
-dontwarn com.android.location.provider.**

# Disable ProGuard Notes, they won't help here
-dontnote
@@ -38,6 +35,10 @@
    @org.microg.gms.common.HttpFormClient$* *;
}

# Keep our stuff
-keep class org.microg.** { *; }
-keep class com.google.android.gms.** { *; }

# Keep asInterface method cause it's accessed from SafeParcel
-keepattributes InnerClasses
-keepclassmembers interface * extends android.os.IInterface {