Proguard: how to proguard META-INF/services interface and impl names?

192 Views Asked by At

Proguard: how to proguard META-INF/services interface and impl names for service loader?

e.g.

META-INF/services/com.example.Foo
com.example.impl.FooImpl

Is there a way for proguard to obfuscate the interface and impl class names? i.e. their class names do not need to be kept and META-INF/services will be changed accordingly. e.g. after obfuscation:

META-INF/services/com.example.a
com.example.b.a
0

There are 0 best solutions below