我有一个android项目,它取决于库模块。我的模块中有一个这样的接口:
public interface SimpleAnimationListener extends Animation.AnimationListener {
@Override
default void onAnimationStart(Animation animation) {
onAnimation(Type.START);
}
@Override
default void onAnimationEnd(Animation animation) {
onAnimation(Type.END);
}
@Override
default void onAnimationRepeat(Animation animation) {
onAnimation(Type.REPEAT);
}
void onAnimation(Type type);
enum Type {
START,
END,
REPEAT
}
}
用法:
public static void fadeViewOut(@NonNull View view, int duration) {
view.setVisibility(View.VISIBLE);
AlphaAnimation anim = new AlphaAnimation(1.0f, 0.0f);
anim.setDuration(duration);
anim.setAnimationListener((SimpleAnimationListener) type -> {
if (type == SimpleAnimationListener.Type.END) {
view.setVisibility(View.INVISIBLE);
}
});
view.startAnimation(anim);
}
每当我在应用程序项目中使用此界面时。我收到以下异常:
FATAL EXCEPTION: main
java.lang.AbstractMethodError: abstract method not implemented
at Zt.onAnimationStart(lambda)
在我的mappings.txt中,我有以下内容:
com.example.mymodule.interfaces.SimpleAnimationListener -> Wt:
<...>
com.example.mymodule.utils.-$$Lambda$AnimationUtils$rrH5aPAPZuoC__1-9DiD10TFdgY -> Zt:
android.view.View f$0 -> a
尝试将以下内容添加到proguard-rules.pro
-keep public class com.example.mymodule.utils.AnimationUtils
-keep public interface com.example.mymodule.interfaces.SimpleAnimationListener
然后在我的映射中,我将得到:
com.example.mymodule.interfaces.SimpleAnimationListener -> com.example.mymodule.interfaces.SimpleAnimationListener:
<...>
com.example.mymodule.utils.-$$Lambda$AnimationUtils$rrH5aPAPZuoC__1-9DiD10TFdgY -> Yt:
android.view.View f$0 -> a
这也会失败。但是错误将指向 Yt 。如果我停止使用覆盖某些方法的接口,则应用程序可以正常工作,但是由于原始接口具有多种方法,因此无法将lamda与它们一起使用。关于如何解决此问题的任何想法?
答案 0 :(得分:0)
您是否也保留枚举? 因为我们不想剥离枚举。
如果不尝试以下操作
-keepclassmembers enum * { *; }
-keep public class com.example.mymodule.utils.AnimationUtils { *; }
-keep public interface com.example.mymodule.interfaces.SimpleAnimationListener { *; }