#!/bin/bash set -ev ROOT=${TRAVIS_BUILD_DIR:-"$( cd "$(dirname "$0")/../../.." ; pwd -P )"} if [[ "$GITHUB_ACTIONS" = true ]]; then ROOT=$GITHUB_WORKSPACE fi export ANDROID_NDK_HOME=$(cd ~/$NDK_DIR && pwd) if [ -z ${GRADLE_TARGET+x} ]; then GRADLE_TARGET=compileArm7DebugSources fi ~/projectGenerator/projectGenerator_linux -p"android" -o"$ROOT" $ROOT/examples/android/androidEmptyExample ~/projectGenerator/projectGenerator_linux -p"android" -o"$ROOT" $ROOT/examples/android/androidOpenCVExample ~/projectGenerator/projectGenerator_linux -p"android" -o"$ROOT" $ROOT/examples/android/androidAssimpExample # echo "ANDROID_NDK_HOME: $ANDROID_NDK_HOME" # echo "org.gradle.caching=true" > $ROOT/examples/android/androidEmptyExample/gradle.properties # echo "org.gradle.caching=true" > $ROOT/examples/android/androidOpenCVExample/gradle.properties # echo "org.gradle.caching=true" > $ROOT/examples/android/androidAssimpExample/gradle.properties cd $ROOT/examples/android/androidEmptyExample; ./gradlew $GRADLE_TARGET cd $ROOT/examples/android/androidOpenCVExample; ./gradlew $GRADLE_TARGET cd $ROOT/examples/android/androidAssimpExample; ./gradlew $GRADLE_TARGET