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

Commit 108afbd1 authored by Luca Zuccarini's avatar Luca Zuccarini Committed by Android (Google) Code Review
Browse files

Merge changes I285cc3a6,Ia6b4c515,If10df0fb,I5e6168bd,I674c8c53 into main

* changes:
  3.3 Introduce a new version of startPendingIntentWithAnimation.
  3.2 Introduce a new version of startIntentWithAnimation.
  3.1 Extract logic from startIntentWithAnimation into a helper.
  2.2 Use startTransaction for reparenting when available.
  2.1 Create a new RemoteTransition using the new delegate directly.
parents 962cf28b 66dbb9d5
Loading
Loading
Loading
Loading
+7 −0
Original line number Diff line number Diff line
@@ -2043,3 +2043,10 @@ flag {
      purpose: PURPOSE_BUGFIX
    }
}

flag {
    name: "animation_library_shell_migration"
    namespace: "systemui"
    description: "Migrate from the old remote animation APIs to the new Shell RemoteTransition-based ones."
    bug: "397180418"
}
+634 −93

File changed.

Preview size limit exceeded, changes collapsed.

+1 −1
Original line number Diff line number Diff line
@@ -213,7 +213,7 @@ constructor(
                    animate,
                    intent.creatorPackage,
                    actuallyShowOverLockscreen,
                    object : ActivityTransitionAnimator.PendingIntentStarter {
                    object : ActivityTransitionAnimator.LegacyPendingIntentStarter {
                        override fun startPendingIntent(
                            animationAdapter: RemoteAnimationAdapter?
                        ): Int {
+1 −1
Original line number Diff line number Diff line
@@ -340,7 +340,7 @@ constructor(
                    animate,
                    intent.creatorPackage,
                    actuallyShowOverLockscreen,
                    object : ActivityTransitionAnimator.PendingIntentStarter {
                    object : ActivityTransitionAnimator.LegacyPendingIntentStarter {
                        override fun startPendingIntent(
                            animationAdapter: RemoteAnimationAdapter?
                        ): Int {
+548 −52

File changed.

Preview size limit exceeded, changes collapsed.