mirror of
https://github.com/apache/cordova-android.git
synced 2026-05-30 00:00:04 +08:00
first pass at a test script
This commit is contained in:
@@ -1,3 +1,24 @@
|
||||
#! /bin/sh
|
||||
VERSION=$(cat ./VERSION)
|
||||
|
||||
echo 'TODO download mobile-spec, generate a project, copy it in, build it'
|
||||
# get the latest mobile-spec
|
||||
git clone git@github.com:phonegap/mobile-spec.git
|
||||
|
||||
# clobber test if it exists
|
||||
if [ -e ./test ]
|
||||
then
|
||||
rm -rf ./test
|
||||
fi
|
||||
|
||||
# generate a working proj
|
||||
./bin/create ./test
|
||||
|
||||
# kill the default app and replace it w/ mobile-spec
|
||||
rm -rf ./test/assets/www
|
||||
mv ./mobile-spec ./test/assets/www
|
||||
cp ./framework/assets/www/phonegap-$VERSION.js ./test/assets/www/phoengap-$VERSION.js
|
||||
|
||||
# build it, launch it and start logging on stdout
|
||||
cd ./test && ./../bin/debug
|
||||
adb shell am start -n com.phonegap.example/com.phonegap.example.PhoneGapExample
|
||||
./../bin/log
|
||||
|
||||
Reference in New Issue
Block a user