Skip to content

Navigation Menu

Sign in
Appearance settings

Search code, repositories, users, issues, pull requests...

Provide feedback

We read every piece of feedback, and take your input very seriously.

Saved searches

Use saved searches to filter your results more quickly

Appearance settings
This repository was archived by the owner on Jun 2, 2023. It is now read-only.

Latest commit

 

History

History
History
executable file
·
26 lines (22 loc) · 825 Bytes

File metadata and controls

executable file
·
26 lines (22 loc) · 825 Bytes
Copy raw file
Download raw file
Open symbols panel
Edit and raw actions
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 | 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/"$XPI_NAME" \
-n $ANDROID_APP_ID/.App
fi
fi
Morty Proxy This is a proxified and sanitized view of the page, visit original site.