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

Commit 4645ab81 authored by John Reck's avatar John Reck
Browse files

Disable RT animations

 Bug: 15287046

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

    /**