You signed in with another tab or window. Reload to refresh your session.You signed out in another tab or window. Reload to refresh your session.You switched accounts on another tab or window. Reload to refresh your session.Dismiss alert
Copy file name to clipboardExpand all lines: AGENT.md
+10-9Lines changed: 10 additions & 9 deletions
Display the source diff
Display the rich diff
Original file line number
Diff line number
Diff line change
@@ -9,7 +9,7 @@ available, and bookmark items.
9
9
This project is a modern Android application that follows the official architecture guidance from Google. It is a reactive, single-activity app that uses the following:
10
10
11
11
-**UI:** Built entirely with Jetpack Compose, including Material 3 components and adaptive layouts for different screen sizes.
12
-
-**State Management:** Unidirectional Data Flow (UDF) is implemented using Kotlin Coroutines and Flows. ViewModels act as state holders, exposing UI state as streams of data.
12
+
-**State Management:** Unidirectional Data Flow (UDF) is implemented using Kotlin Coroutines and `Flow`s. `ViewModel`s act as state holders, exposing UI state as streams of data.
13
13
-**Dependency Injection:** Hilt is used for dependency injection throughout the app, simplifying the management of dependencies and improving testability.
14
14
-**Navigation:** Navigation is handled by Jetpack Navigation 2 for Compose, allowing for a declarative and type-safe way to navigate between screens.
15
15
-**Data:** The data layer is implemented using the repository pattern.
@@ -18,11 +18,12 @@ This project is a modern Android application that follows the official architect
18
18
-**Background Processing:** WorkManager is used for deferrable background tasks.
19
19
20
20
## Modules
21
-
The main Android app lives in the `app/` folder. Feature modules live in "feature/" and core and shared modules in "core/".
21
+
22
+
The main Android app lives in the `app/` folder. Feature modules live in `feature/` and core and shared modules in `core/`.
22
23
23
24
## Commands to Build & Test
24
25
25
-
The app and Android libraries have two product flavors: `demo` and `prod`.
26
+
The app and Android libraries have two product flavors: `demo` and `prod`, and two build types: `debug` and `release`.
26
27
27
28
- Build: `./gradlew assemble{Variant}`. Typically `assembleDemoDebug`.
0 commit comments