我有一个有接口的类。
class A {
public interface B {
}
}
另一个类将使用此接口
B h = new B(){ };
但是在我混淆了界面之后无法正常工作。 我的Proguard:
-keep interface A$B{*;}
答案 0 :(得分:-1)
如果你使用proguard: 你需要在这篇文章中使用标签“-keep”: How keep my class from obfuscate by proguard。 您还需要阅读这篇文章:http://developer.android.com/tools/help/proguard.html#configuring 关心Dzmitry