build
Some checks failed
Gradle Build / build (push) Has been cancelled

This commit is contained in:
rattatwinko
2025-05-24 19:31:52 +02:00
parent b96ce47f0c
commit 3cb5a422a8
10 changed files with 726 additions and 0 deletions

14
build.sh Executable file
View File

@@ -0,0 +1,14 @@
#!/bin/bash
# Universal build script for Maven and Gradle projects
echo "Current directory: $(pwd)"
# Check for Gradle or Gradle Wrapper
echo "Building Gradle project using wrapper: CameraApp"
cd "."
chmod +x ./gradlew
./gradlew build
cd - > /dev/null
echo "Build complete. Build artifacts should be in their respective target/ or build/libs/ directories."