mirror of
https://github.com/keymanapp/keyman.git
synced 2026-08-05 00:15:32 +00:00
16 lines
268 B
Bash
16 lines
268 B
Bash
#!/bin/sh
|
|
# Build KeyboardHarness test app
|
|
|
|
#
|
|
# Prevents 'clear' on exit of mingw64 bash shell
|
|
#
|
|
SHLVL=0
|
|
|
|
echo Build KMEA
|
|
cd ../../KMEA
|
|
./build.sh
|
|
cd ../Tests/KeyboardHarness
|
|
cp ../keyman-engine.aar app/libs/
|
|
|
|
echo Build KeyboardHarness test app
|
|
./gradlew clean build
|