Files
apk/build.sh

14 lines
381 B
Bash
Raw Normal View History

#!/bin/bash
# This script will initialize the gradle build process for all subprojects in src dicetory
# Find all src subdirectories containing a build.gradle file
for dir in src/*/; do
if [ -f "$dir/build.gradle" ]; then
echo "Building project in $dir"
(cd "$dir" && gradle build)
else
echo "No build.gradle found in $dir, skipping."
fi
done