Last active
February 6, 2022 15:26
-
-
Save ArianK16a/3b2b296a69a6765a7d4b08403c390416 to your computer and use it in GitHub Desktop.
This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
| #!/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 | |
| ) | |
| 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=( | |
| 303148 # profiles: Import SeekBarVolumizer for usage in SetupActionsfragment | |
| 303149 # profiles: SeekBarVolumizer: Properly setup the minimum of the seekbar | |
| 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