We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
There was an error while loading. Please reload this page.
1 parent 5361227 commit d0b76a4Copy full SHA for d0b76a4
runTests.sh
@@ -1,5 +1,8 @@
1
#!/bin/bash
2
3
+# update android sdk
4
+android update sdk --no-ui --force
5
+
6
# x86 emulator
7
echo no | android create avd -c 50M --force -n testx86 -t android-16 --abi x86
8
emulator -ports 5554,5555 -partition-size 256 -avd testx86 -no-skin -no-boot-anim -no-audio -no-window &
@@ -13,6 +16,5 @@ PID_EMU2=$!
13
16
./wait_for_emulator emulator-5556
14
17
15
18
# Running Tests
-adb -s emulator-5554 logcat &
19
./gradlew --info build connectedCheck || exit 1
20
kill -9 $PID_EMU1 $PID_EMU2
0 commit comments