You've already forked android_translation_layer
mirror of
https://gitlab.com/android_translation_layer/android_translation_layer.git
synced 2025-10-27 11:48:10 -07:00
add more APIs needed for NewPipe
This commit is contained in:
@@ -2,4 +2,19 @@ package android.animation;
|
||||
|
||||
public class AnimatorSet extends Animator {
|
||||
|
||||
public class Builder {
|
||||
|
||||
public Builder with(Animator animator) {
|
||||
return this;
|
||||
}
|
||||
}
|
||||
|
||||
public Builder play(Animator animator) {
|
||||
return new Builder();
|
||||
}
|
||||
|
||||
public void setInterpolator(TimeInterpolator value) {}
|
||||
|
||||
public void playSequentially(Animator[] animators) {}
|
||||
|
||||
}
|
||||
|
||||
Reference in New Issue
Block a user