Merge pull request #1 from pawelorzech/codex/agents
Add AGENTS documentation with build instructions
This commit is contained in:
commit
089d3b3db6
1 changed files with 22 additions and 0 deletions
22
AGENTS.md
Normal file
22
AGENTS.md
Normal 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/`
|
||||
Loading…
Reference in a new issue