Skip to content

Instantly share code, notes, and snippets.

@ArianK16a
Last active February 6, 2022 15:26
Show Gist options
  • Select an option

  • Save ArianK16a/3b2b296a69a6765a7d4b08403c390416 to your computer and use it in GitHub Desktop.

Select an option

Save ArianK16a/3b2b296a69a6765a7d4b08403c390416 to your computer and use it in GitHub Desktop.
#!/bin/bash
set -e
source "build/envsetup.sh";
# device/lineage/sepolicy
changes=(
301607 # common: Label IAntiFlicker live display service
)
repopick -f -P device/lineage/sepolicy ${changes[@]}&
# frameworks/base
changes=(
301606 # SystemUI: Add anti flicker tile
305890 # [SQUASH]base: Revert secondary home handle
# TEMPORARY for migration builds
297539 # Reset all package signatures on boot
)
repopick -f -P frameworks/base ${changes[@]}&
# hardware/lineage/interfaces
changes=(
301608 # Introduce anti flicker LiveDisplay interface
)
repopick -f -P hardware/lineage/interfaces ${changes[@]}&
# lineage-sdk
changes=(
301609 # Introduce anti flicker mode in LiveDisplay
)
repopick -f -P lineage-sdk ${changes[@]}&
# packages/apps/LineageParts
changes=(
301605 # Add a toggle for anti flicker mode in LiveDisplay settings
)
repopick -f -P packages/apps/LineageParts ${changes[@]}&
wait
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment