Files
android_translation_layer/src/api-impl/android/animation/Animator.java
Julian Winkler 82744e9e5e add bunch of new java APIs: mostly stubs or copied from AOSP
Many of these classes are only needed to be subclassed by androidx
support library, which is used in many android apps
2023-08-22 15:53:09 +02:00

10 lines
123 B
Java

package android.animation;
public class Animator {
public void setTarget(Object target) {}
public void start() {}
}