forked from EFForg/https-everywhere
-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathandroid-push.sh
More file actions
executable file
·26 lines (22 loc) · 839 Bytes
/
android-push.sh
File metadata and controls
executable file
·26 lines (22 loc) · 839 Bytes
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
#!/bin/bash
set -o errexit
cd $(dirname $0)
XPI_NAME=$1
ANDROID_APP_ID=org.mozilla.firefox
if [ -z "$XPI_NAME" ] ; then
echo "No package name given to android-push.sh."
exit 1
fi
# Push to Android Firefox if device is connected
# XXX on some systems, adb may require sudo...
if type adb > /dev/null 2>/dev/null && adb devices >/dev/null 2>/dev/null ; then
ADB_FOUND=`adb devices | grep -v 'offline$' | tail -2 | head -1 | cut -f 1 | sed 's/ *$//g'`
if [ "$ADB_FOUND" != "List of devices attached" ]; then
echo Pushing "$XPI_NAME" to /sdcard/"$XPI_NAME"
adb push "../$XPI_NAME" /sdcard/"$XPI_NAME"
adb shell am start -a android.intent.action.VIEW \
-c android.intent.category.DEFAULT \
-d file:///mnt/sdcard/pkg/ \
-n $ANDROID_APP_ID/.App
fi
fi