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

Commit 9c5ccec5 authored by Nishith  Khanna's avatar Nishith Khanna
Browse files

Merge remote-tracking branch 'origin/lineage-21.0' into v1-u

parents deb27795 d55bdacf
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