add some stubs needed because of previous commits

Since we now call draw() on View subclasses, we reach some new
codepaths which need new stubs
This commit is contained in:
Julian Winkler
2024-05-19 15:27:43 +02:00
parent 53d6714a0d
commit fdec418102
7 changed files with 23 additions and 2 deletions

View File

@@ -8,4 +8,8 @@ public class AnimationUtils {
public static long currentAnimationTimeMillis() {
return System.currentTimeMillis();
}
public static Interpolator loadInterpolator(Context context, int dummy) {
return null;
}
}