From a9bb8433af36735c5b85cbd0c1c85461611917f4 Mon Sep 17 00:00:00 2001 From: Syuugo Date: Fri, 17 Jun 2022 21:24:11 +0900 Subject: [PATCH] Added flow to remove Amazon AppStore (#420) --- .github/workflows/magisk.yml | 15 ++++++++++++++- 1 file changed, 14 insertions(+), 1 deletion(-) diff --git a/.github/workflows/magisk.yml b/.github/workflows/magisk.yml index 1fce3c1..7ebf5a5 100644 --- a/.github/workflows/magisk.yml +++ b/.github/workflows/magisk.yml @@ -47,6 +47,14 @@ on: - pico - tvstock - tvmini + remove_amazon: + description: "Remove Amazon AppStore" + required: true + default: "keep" + type: choice + options: + - keep + - remove root_sol: description: "Root solution" required: true @@ -300,6 +308,10 @@ jobs: sudo mount -o loop ${{ matrix.arch }}/vendor.img system/vendor sudo mount -o loop ${{ matrix.arch }}/product.img system/product sudo mount -o loop ${{ matrix.arch }}/system_ext.img system/system_ext + - name: Remove Amazon AppStore + if: ${{ github.event.inputs.remove_amazon == 'remove' }} + run: | + find system/product/{etc/permissions,etc/sysconfig,framework,priv-app} | grep -e amazon -e venezia | sudo xargs rm -rf - name: Integrate Magisk if: ${{ github.event.inputs.root_sol == 'magisk' || github.event.inputs.root_sol == '' }} run: | @@ -431,7 +443,7 @@ jobs: sudo find system/system/{app,framework,priv-app} -type f -exec chcon --reference=system/system/framework/ext.jar {} \; ls gapps/etc/ | xargs -n 1 -I dir sudo find system/system/etc/dir -type f -exec chcon --reference=system/system/etc/permissions {} \; - sudo find system/product/{app,etc,overlay,priv-app} -type f -exec chcon --reference=system/product/etc/permissions/privapp-permissions-venezia.xml {} \; + sudo find system/product/{app,etc,overlay,priv-app} -type f -exec chcon --reference=system/product/etc/permissions/com.android.settings.intelligence.xml {} \; sudo patchelf --replace-needed libc.so "${HOME}/libc.so" ./magiskpolicy || true sudo patchelf --replace-needed libm.so "${HOME}/libm.so" ./magiskpolicy || true sudo patchelf --replace-needed libdl.so "${HOME}/libdl.so" ./magiskpolicy || true @@ -516,6 +528,7 @@ jobs: fix_prop(sec, prop) - name: Umount images run: | + sudo find system -exec touch -amt 200901010000.00 {} \;> /dev/null 2>&1 sudo umount system/vendor sudo umount system/product sudo umount system/system_ext