build-debug 320 B

123456789101112131415
  1. #!/bin/bash
  2. # command line build script for building debug version
  3. set -e
  4. DIR="$( cd "$( dirname "${BASH_SOURCE[0]}" )" && pwd )"
  5. ATE_ROOT="$( cd $DIR/.. && pwd )"
  6. cd "$ATE_ROOT"
  7. if [ ! -f "local.properties" ]; then
  8. echo "local.properties does not exist. Please create it."
  9. exit 1
  10. fi
  11. ./gradlew assembleDebug