mirror of
https://github.com/ChrisTitusTech/linutil.git
synced 2024-11-06 05:29:42 +00:00
46 lines
1.5 KiB
Bash
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
|