linutil/core/tabs/applications-setup/android-debloat.sh
Guru Swarupa 03ffe59b70
added adb setup + uad setup (#592)
* added dev tools

* added adb setup and uad setup

* fix

* Update core/tabs/applications-setup/android-debloat.sh

Co-authored-by: Adam Perkowski <adas1per@protonmail.com>

* Update core/tabs/applications-setup/android-debloat.sh

Co-authored-by: Adam Perkowski <adas1per@protonmail.com>

* Update core/tabs/applications-setup/android-debloat.sh

Co-authored-by: Adam Perkowski <adas1per@protonmail.com>

* Update core/tabs/applications-setup/android-debloat.sh

Co-authored-by: Nyx <144965845+nnyyxxxx@users.noreply.github.com>

* Update core/tabs/applications-setup/android-debloat.sh

Co-authored-by: Adam Perkowski <adas1per@protonmail.com>

* Update android-debloat.sh

* Update android-debloat.sh

---------

Co-authored-by: Adam Perkowski <adas1per@protonmail.com>
Co-authored-by: Nyx <144965845+nnyyxxxx@users.noreply.github.com>
2024-09-22 11:09:05 -05:00

46 lines
1.5 KiB
Bash

#!/bin/sh -e
. ../common-script.sh
install_adb() {
if ! command_exists adb ; then
printf "%b\n" "${YELLOW}Installing ADB...${RC}."
case "$PACKAGER" in
apt-get|nala)
"$ESCALATION_TOOL" "$PACKAGER" install -y android-sdk-platform-tools
;;
zypper)
"$ESCALATION_TOOL" "$PACKAGER" --non-interactive install android-tools
;;
pacman)
"$ESCALATION_TOOL" "$PACKAGER" -S --noconfirm android-tools
;;
dnf)
"$ESCALATION_TOOL" "$PACKAGER" install -y android-tools
;;
*)
printf "%b\n" "${RED}Unsupported package manager: "$PACKAGER"${RC}"
exit 1
;;
esac
else
printf "%b\n" "${GREEN}ADB is already installed.${RC}"
fi
}
install_universal_android_debloater() {
if ! command_exists uad; then
printf "%b\n" "${YELLOW}Installing Universal Android Debloater...${RC}."
curl -sSLo "${HOME}/uad" "https://github.com/Universal-Debloater-Alliance/universal-android-debloater-next-generation/releases/download/v1.1.0/uad-ng-linux"
"$ESCALATION_TOOL" chmod +x "${HOME}/uad"
"$ESCALATION_TOOL" mv "${HOME}/uad" /usr/local/bin/uad
else
printf "%b\n" "${GREEN}Universal Android Debloater is already installed. Run 'uad' command to execute.${RC}"
fi
}
checkEnv
checkEscalationTool
install_adb
install_universal_android_debloater