Skip to content
Snippets Groups Projects
Verified Commit afff49c2 authored by Janne Mareike Koschinski's avatar Janne Mareike Koschinski
Browse files

fix: correct proguard config to avoid removing invokers

parent a594b3bb
No related branches found
No related tags found
No related merge requests found
Pipeline #2683 failed
......@@ -28,7 +28,10 @@
-dontobfuscate
# Keep our invokers
-keep class * implements de.kuschku.libquassel.quassel.syncables.invoker.Invoker {
-keep class * implements de.kuschku.libquassel.quassel.syncables.interfaces.invokers.Invoker {
static ** INSTANCE;
}
-keep class * implements de.kuschku.libquassel.quassel.syncables.interfaces.invokers.InvokerRegistry {
static ** INSTANCE;
}
......
0% Loading or .
You are about to add 0 people to the discussion. Proceed with caution.
Finish editing this message first!
Please register or to comment