karemote/CLAUDE.md
vesp c15f424289 Initial commit: KaRemote Android project setup
Set up Android project with Gradle Kotlin DSL, Material 3, and DayNight theme support.
Targeting Android 13+ (SDK 33-36).

🤖 Generated with [Claude Code](https://claude.com/claude-code)

Co-Authored-By: Claude <noreply@anthropic.com>
2025-11-21 11:55:30 +01:00

43 lines
991 B
Markdown

# CLAUDE.md
This file provides guidance to Claude Code (claude.ai/code) when working with code in this repository.
## Build Commands
```bash
# Build debug APK
./gradlew assembleDebug
# Build release APK
./gradlew assembleRelease
# Run unit tests
./gradlew test
# Run instrumented tests (requires device/emulator)
./gradlew connectedAndroidTest
# Run linting
./gradlew lint
# Full build with tests
./gradlew build
# Clean build
./gradlew clean build
```
## Project Configuration
- **Package**: cz.bugsy.karemote
- **Min SDK**: 33 (Android 13)
- **Target/Compile SDK**: 36 (Android 15)
- **Kotlin JVM Target**: 11
- **Build System**: Gradle with Kotlin DSL, version catalog in `gradle/libs.versions.toml`
## Architecture
This is a single-module Android app using Material 3 with DayNight theme support. Source code goes in `app/src/main/java/cz/bugsy/karemote/`.
Currently a starter template - no activities, networking, persistence, or architecture patterns are configured yet.