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

Commit c93ee799 authored by John Reck's avatar John Reck Committed by Android Git Automerger
Browse files

am 94e5ee1c: Merge "Disable RT animations" into lmp-preview-dev

* commit '94e5ee1c3b2c5f70a5e687a77dcc2c93db50b062':
  Disable RT animations
parents 48d3eeda 10d1b4d0
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);
        //}
    }

    /**