├── .gitignore ├── 000_remotes.xml ├── local_manifest.xml ├── picks.sh ├── vendor.xml └── webview.xml /.gitignore: -------------------------------------------------------------------------------- 1 | priv/ 2 | -------------------------------------------------------------------------------- /000_remotes.xml: -------------------------------------------------------------------------------- 1 | 2 | 3 | 4 | 5 | 6 | 7 | 8 | -------------------------------------------------------------------------------- /local_manifest.xml: -------------------------------------------------------------------------------- 1 | 2 | 3 | 4 | 5 | 6 | 7 | 8 | 9 | 10 | 11 | 12 | 13 | 14 | 15 | 16 | -------------------------------------------------------------------------------- /picks.sh: -------------------------------------------------------------------------------- 1 | #!/bin/bash 2 | 3 | set -e 4 | 5 | function privpick() { 6 | git -C $1 fetch github $2 7 | git -C $1 cherry-pick FETCH_HEAD 8 | } 9 | 10 | function checkchain() { 11 | git -C $1 fetch github $2 12 | git -C $1 checkout FETCH_HEAD 13 | } 14 | 15 | source build/envsetup.sh 16 | 17 | # -------------- DEVICE STUFF -------------- 18 | 19 | # -------------- PLATFORM STUFF -------------- 20 | 21 | # frameworks/base 22 | #repopick 318763 # SystemUI: runtime configurable audio panel location 23 | repopick 320714 # SystemUI: add burnIn protection 24 | privpick frameworks/base baf2e2f48a4ef6b64e67ad6dfd7740113058aad7 # Alter model name to avoid SafetyNet HW attestation enforcement 25 | privpick frameworks/base f96f3f09b4cadfbf0474ab633ad33f55c6449e90 # keystore: Block key attestation for SafetyNet 26 | 27 | # packages/apps/Trebuchet 28 | repopick 317967 # Enable crossfade when changing theme 29 | repopick 317969 # Expose themed icon setting in ThemePicker 30 | 31 | # -------------- TOPIC STUFF -------------- 32 | 33 | exit 0 34 | -------------------------------------------------------------------------------- /vendor.xml: -------------------------------------------------------------------------------- 1 | 2 | 3 | 4 | 5 | 6 | 7 | 8 | 9 | 10 | 11 | 12 | 13 | 14 | 15 | -------------------------------------------------------------------------------- /webview.xml: -------------------------------------------------------------------------------- 1 | 2 | 3 | 4 | 5 | --------------------------------------------------------------------------------