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

Unverified Commit d55bdacf authored by Michael Bestas's avatar Michael Bestas
Browse files

Merge tag 'android-14.0.0_r50' into staging/lineage-21.0_merge-android-14.0.0_r50

Android 14.0.0 Release 50 (AP2A.240605.024)

# -----BEGIN PGP SIGNATURE-----
#
# iF0EABECAB0WIQRDQNE1cO+UXoOBCWTorT+BmrEOeAUCZmdzpQAKCRDorT+BmrEO
# eFanAJ0VN0txBvJb0IEDH+sJ0qyPWsytgwCdEVFG+//g+qboXAVgNP3H+3CPK98=
# =a0kt
# -----END PGP SIGNATURE-----
# gpg: Signature made Tue Jun 11 00:44:05 2024 EEST
# gpg:                using DSA key 4340D13570EF945E83810964E8AD3F819AB10E78
# gpg: Good signature from "The Android Open Source Project <initial-contribution@android.com>" [marginal]
# gpg: initial-contribution@android.com: Verified 2293 signatures in the past
#      2 years.  Encrypted 4 messages in the past 2 years.
# gpg: WARNING: This key is not certified with sufficiently trusted signatures!
# gpg:          It is not certain that the signature belongs to the owner.
# Primary key fingerprint: 4340 D135 70EF 945E 8381  0964 E8AD 3F81 9AB1 0E78

# By Yein Jo (11) and others
# Via Android Build Coastguard Worker (25) and others
* tag 'android-14.0.0_r50': (36 commits)
  Set the container field of aconfig flags
  Remove unused method to change icon background color
  Drop platform_apis from java_library
  Drop platform_apis from java_library
  Avoid NoSuchMethodError of List.removeLast() on 24Q2
  Drop platform_apis from android_library
  Refactor rain effect
  Add mid layer rain (behind the subject)
  Update weather configs' constructors.
  Add intensity uniform param.
  Removing unused HandlerRunnable
  Add more debug assets
  Add the explicit namespace to toruslib.
  Add logs for when we schedule and unschedule ClockDrawableWrapper
  Fix widget restore for pre-archived apps
  Expose RRO completion signal
  Revert "Fix widget restore for pre-archived apps"
  Update badge for private space
  Fix widget restore for pre-archived apps
  Include shader/texture assets in weather/graphics lib.
  ...

Change-Id: I688244c6a4a95e84b0175fe8fb76350d4cc7a655
parents 5db96b32 206da9e7
Loading
Loading
Loading
Loading

PREUPLOAD.cfg

0 → 100644
+12 −0
Original line number Diff line number Diff line
[Builtin Hooks]
bpfmt = true

[Builtin Hooks Options]
bpfmt = -d

[Hook Scripts]
checkstyle_hook = ${REPO_ROOT}/prebuilts/checkstyle/checkstyle.py --sha ${PREUPLOAD_COMMIT}

ktfmt_hook = ${REPO_ROOT}/external/ktfmt/ktfmt.py --check -i ${REPO_ROOT}/frameworks/libs/systemui/ktfmt_includes.txt ${PREUPLOAD_FILES}

ktlint_hook = ${REPO_ROOT}/prebuilts/ktlint/ktlint.py --no-verify-format -f ${PREUPLOAD_FILES}
+2 −1
Original line number Diff line number Diff line
@@ -22,12 +22,13 @@
package {
    default_visibility: [
        "//visibility:public",
    ]
    ],
}

aconfig_declarations {
    name: "com_android_systemui_shared_flags",
    package: "com.android.systemui.shared",
    container: "system",
    srcs: [
        "*.aconfig",
    ],
+1 −0
Original line number Diff line number Diff line
package: "com.android.systemui.shared"
container: "system"

# Note: for shared flags across SystemUI & framework

+25 −0
Original line number Diff line number Diff line
package: "com.android.systemui.shared"
container: "system"

flag {
    name: "example_shared_flag"
@@ -6,3 +7,27 @@ flag {
    description: "An Example Flag"
    bug: "308482106"
}

flag {
    name: "return_animation_framework_library"
    namespace: "systemui"
    description: "Turn on Return functionality in the Animation library"
    bug: "273205603"
}

flag {
    name: "shade_allow_back_gesture"
    namespace: "systemui"
    description: "Allow Back Gestures in Shade"
    bug: "309545085"
}

flag {
    name: "enable_home_delay"
    namespace: "systemui"
    description: "Enables fix that exposes signal to notify the completion of the RRO loading."
    bug: "307507412"
    metadata {
        purpose: PURPOSE_BUGFIX
    }
}
+0 −3
Original line number Diff line number Diff line
@@ -35,9 +35,6 @@ android_library {
        "res"
    ],
    kotlincflags: ["-Xjvm-default=all"],
    // This library is meant to access only public APIs
    // do not flip this flag to true
    platform_apis: false
}

android_library {
Loading