7718d2ac05
Term.apk now contains JNI shared ojbects for all architectures. Currectly, the script would only extract and copy armeabi object. Change the script to extract all object and copy the correct ABI object to the filesystem. Change-Id: I167eafab523a4104063fec89b7ba136031c1d07c Signed-off-by: Rocky Zhang <zhangyan.hit@gmail.com>
10 lines
328 B
Plaintext
Executable File
10 lines
328 B
Plaintext
Executable File
|
|
BASEDIR=`dirname $0`
|
|
|
|
mkdir -p $BASEDIR/proprietary
|
|
|
|
# Get Android Terminal Emulator (we use a prebuilt so it can update from the Market)
|
|
curl -L -o $BASEDIR/proprietary/Term.apk -O -L https://github.com/downloads/jackpal/Android-Terminal-Emulator/Term.apk
|
|
unzip -o -d $BASEDIR/proprietary $BASEDIR/proprietary/Term.apk lib/*
|
|
|