-
Notifications
You must be signed in to change notification settings - Fork 2
Expand file tree
/
Copy pathproguard.pro
More file actions
17 lines (16 loc) · 751 Bytes
/
proguard.pro
File metadata and controls
17 lines (16 loc) · 751 Bytes
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
#-keep class io.ktor.server.netty.EngineMain { *; }
#-keep class kotlin.reflect.jvm.internal.** { *; }
#-keep class kotlin.text.RegexOption { *; }
#-keep class io.ktor.locations.** { *; }
#-keep class com.fantasticthing.github.AppKt { *; }
#-keep class com.fantasticthing.github.router.** {*;}
#-keep class com.fantasticthing.github.location.** {*;}
#
## Jackson
#-keep @com.fasterxml.jackson.annotation.JsonIgnoreProperties class * { *; }
#-keep class com.fasterxml.** { *; }
#-keep class org.codehaus.** { *; }
#-keepnames class com.fasterxml.jackson.** { *; }
#-keepclassmembers public final enum com.fasterxml.jackson.annotation.JsonAutoDetect$Visibility {
# public static final com.fasterxml.jackson.annotation.JsonAutoDetect$Visibility *;
#}