-
Notifications
You must be signed in to change notification settings - Fork 14
/
Copy pathreinstallApps.sh
executable file
·38 lines (32 loc) · 951 Bytes
/
reinstallApps.sh
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
#!/bin/bash
# Created by Sujay Davalgi
#
# Uninstalls and reinstalls the @Home apps in the selected non-@Home companion device
#
# Usage: ./reinstallApps.sh [<Folder name>]
# Command line Arguments (Optional):
# $1 - Input the folder name to install the app from
# If the folder name is not provided, it will prompt to enter the folder name
. ./library/mainFunctions.sh
. ./library/textFormatting.sh
. ./library/deviceOperations.sh
. ./library/myFunctions_legacy.sh
getDeviceChoice
displaySelectedDevice $deviceSerial
if [ $# -lt 1 ]; then
pbold "\n Enter the Folder name (Case-sensitive) : "
read build
else
build="$1"
fi
checkSubFolder $build
if [ $( isAdbDevice $deviceSerial ) == "true" ]; then
if [ $( isAtHomeDevice $deviceSerial ) == "true" ]; then
echo -e " Installing Apps is not allowed in @Home device ...\n"
else
unInstallAPKs $deviceSerial
reInstallAPKs $deviceSerial
fi
else
echo -e " Device is not in adb mode"
fi