Commit 27cb40ee authored by Viktor De Pasquale's avatar Viktor De Pasquale

Removed test options from proguard

parent c06081b7
## So every class is case insensitive to avoid some bizare problems
-dontusemixedcaseclassnames
-keep class kotlin.** { *; }
-keep class kotlin.Metadata { *; }
## If reflection issues come up uncomment this, that should temporarily fix it
#-keep class kotlin.** { *; }
#-keep class kotlin.Metadata { *; }
#-keepclassmembers class kotlin.Metadata {
# public <methods>;
#}
## Never warn about Kotlin, it should work as-is
-dontwarn kotlin.**
-keepclassmembers class kotlin.Metadata {
public <methods>;
}
# Removes runtime null checks - doesn't really matter if it crashes on kotlin or java NPE
## Removes runtime null checks - doesn't really matter if it crashes on kotlin or java NPE
-assumenosideeffects class kotlin.jvm.internal.Intrinsics {
static void checkParameterIsNotNull(java.lang.Object, java.lang.String);
}
# Useless option for dex
## Useless option for dex
-dontpreverify
\ No newline at end of file
Markdown is supported
0% or
You are about to add 0 people to the discussion. Proceed with caution.
Finish editing this message first!
Please register or to comment