Donate to e Foundation | Murena handsets with /e/OS | Own a part of Murena! Learn more

Commit 10d1b4d0 authored by John Reck's avatar John Reck Committed by Android (Google) Code Review
Browse files

Merge "Disable RT animations" into lmp-preview-dev

parents 560ce61c 4645ab81
Loading
Loading
Loading
Loading
+4 −3
Original line number Original line Diff line number Diff line
@@ -253,9 +253,10 @@ public class ViewPropertyAnimator {
    ViewPropertyAnimator(View view) {
    ViewPropertyAnimator(View view) {
        mView = view;
        mView = view;
        view.ensureTransformationInfo();
        view.ensureTransformationInfo();
        if (view.getContext().getApplicationInfo().targetSdkVersion >= Build.VERSION_CODES.L) {
        // TODO: Disabled because of b/15287046
            mRTBackend = new ViewPropertyAnimatorRT(view);
        //if (view.getContext().getApplicationInfo().targetSdkVersion >= Build.VERSION_CODES.L) {
        }
        //    mRTBackend = new ViewPropertyAnimatorRT(view);
        //}
    }
    }


    /**
    /**