this isn't working ``` -assumenosideeffects class ...
# android
i
this isn't working
Copy code
-assumenosideeffects class mypackage.Log {
    public static void v(...);
    public static void d(...);
    public static void i(...);
}
and can't apparently get kotlin syntax working
k
You have instance methods in the interface, try removing the
static
keyword from the proguard rules
i
doesn't seem to work. It does nothing
don't I need Kotlin specific syntax? 🤔
a
proguard works at bytecode level, so nothing kotlin related here. probably it's not working because Log is an interface, not a class. try to assumenosideeffects
interface
rather than class. also, remove
static
as said above.