Add AGENTS build instructions

This commit is contained in:
Paweł Orzech 2026-02-03 22:43:08 +01:00
parent dff40712c5
commit 5740fa2748
No known key found for this signature in database

22
AGENTS.md Normal file
View file

@ -0,0 +1,22 @@
# AGENTS.md
## Build & Test
```bash
# Build debug APK
./gradlew assembleDebug
# Build release APK (with ProGuard/R8 minification)
./gradlew assembleRelease
# Run unit tests
./gradlew test
# Run instrumented tests (requires emulator/device)
./gradlew connectedAndroidTest
# Clean build
./gradlew clean
```
APK outputs: `app/build/outputs/apk/`