Skip to content

Commit 08f9dd0

Browse files
committed
Update readme and build dependency graph
1 parent 9985a02 commit 08f9dd0

File tree

64 files changed

+66
-1276
lines changed

Some content is hidden

Large Commits have some content hidden by default. Use the searchbox below for content that may be hidden.

64 files changed

+66
-1276
lines changed

app/build.gradle.kts

Lines changed: 0 additions & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -85,7 +85,6 @@ dependencies {
8585
implementation(projects.core.data)
8686
implementation(projects.core.model)
8787
implementation(projects.core.analytics)
88-
implementation(projects.core.navigation)
8988
implementation(projects.sync.work)
9089

9190
implementation(libs.androidx.activity.compose)

benchmarks/README.md

Lines changed: 3 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,3 @@
1+
# :benchmarks module
2+
## Dependency graph
3+
![Dependency graph](../docs/images/graphs/dep_graph_benchmarks.svg)

build-logic/convention/src/main/kotlin/AndroidFeatureApiConventionPlugin.kt

Lines changed: 0 additions & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -28,7 +28,6 @@ class AndroidFeatureApiConventionPlugin : Plugin<Project> {
2828

2929
dependencies {
3030
"api"(project(":core:navigation"))
31-
"implementation"(project(":core:data"))
3231
}
3332
}
3433
}

core/navigation/README.md

Lines changed: 3 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,3 @@
1+
# :core:navigation module
2+
## Dependency graph
3+
![Dependency graph](../../docs/images/graphs/dep_graph_core_navigation.svg)

core/navigation/src/test/kotlin/com/google/samples/apps/nowinandroid/core/navigation/NiaBackStackTest.kt

Lines changed: 3 additions & 3 deletions
Original file line numberDiff line numberDiff line change
@@ -205,7 +205,7 @@ class NiaBackStackTest {
205205

206206
@Test
207207
fun popMultipleTopLevel() {
208-
val TestTopLevelKeyTwo = object: NiaNavKey {
208+
val testTopLevelKeyTwo = object: NiaNavKey {
209209
override val isTopLevel: Boolean
210210
get() = true
211211
}
@@ -214,11 +214,11 @@ class NiaBackStackTest {
214214
niaBackStack.navigate(TestTopLevelKey)
215215
niaBackStack.navigate(TestKeyFirst)
216216
// third sub-stack
217-
niaBackStack.navigate(TestTopLevelKeyTwo)
217+
niaBackStack.navigate(testTopLevelKeyTwo)
218218
niaBackStack.navigate(TestKeySecond)
219219

220220
assertThat(niaBackStack.backStack).containsExactly(
221-
TestStartKey, TestTopLevelKey, TestKeyFirst, TestTopLevelKeyTwo, TestKeySecond,
221+
TestStartKey, TestTopLevelKey, TestKeyFirst, testTopLevelKeyTwo, TestKeySecond,
222222
).inOrder()
223223

224224
niaBackStack.popLast(4)

docs/images/graphs/dep_graph_app.svg

Lines changed: 0 additions & 305 deletions
Loading
Lines changed: 0 additions & 45 deletions
Loading
Lines changed: 0 additions & 9 deletions
Loading
Lines changed: 0 additions & 9 deletions
Loading
Lines changed: 0 additions & 97 deletions
Loading

0 commit comments

Comments
 (0)