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: docs/ModularizationLearningJourney.md
+7-7Lines changed: 7 additions & 7 deletions
Display the source diff
Display the rich diff
Original file line number
Diff line number
Diff line change
@@ -108,11 +108,11 @@ For example, `sync`, `benchmark` and `test` modules, as well as `app-nia-catalog
108
108
</td>
109
109
</tr>
110
110
<tr>
111
-
<td><code>feature1:api,</code><br>
112
-
<code>feature2:api</code><br>
111
+
<td><code>feature:1:api,</code><br>
112
+
<code>feature:2:api</code><br>
113
113
...
114
114
</td>
115
-
<td>Navigation keys and functions that other features can use to navigate to this feature.<br>
115
+
<td>Navigation keys and functions that other features can use to navigate to this feature.<br><br>
116
116
For example: The <code>:topic:api</code> module exposes a <code>Navigator.navigateToTopic</code> function that the
117
117
<code>:interests:impl</code> module uses to navigate from the <code>InterestsScreen</code> to the <code>TopicScreen</code> when
118
118
a topic is clicked.
@@ -121,15 +121,15 @@ For example, `sync`, `benchmark` and `test` modules, as well as `app-nia-catalog
121
121
</td>
122
122
</tr>
123
123
<tr>
124
-
<td><code>feature1:impl,</code><br>
125
-
<code>feature2:impl</code><br>
124
+
<td><code>feature:1:impl,</code><br>
125
+
<code>feature:2:impl</code><br>
126
126
...
127
127
</td>
128
128
<td>Functionality associated with a specific feature or user journey. Typically contains UI components and ViewModels which read data from other modules.<br>
129
129
Examples include:<br>
130
130
<ul>
131
-
<li><a href="https://github.com/android/nowinandroid/tree/main/feature/topic"><code>feature:topic</code></a> displays information about a topic on the TopicScreen.</li>
132
-
<li><a href="https://github.com/android/nowinandroid/tree/main/feature/foryou"><code>feature:foryou</code></a> which displays the user's news feed, and onboarding during first run, on the For You screen.</li>
131
+
<li><a href="https://github.com/android/nowinandroid/tree/main/feature/topic/impl"><code>feature:topic:impl</code></a> displays information about a topic on the TopicScreen.</li>
132
+
<li><a href="https://github.com/android/nowinandroid/tree/main/feature/foryou/impl"><code>feature:foryou:impl</code></a> which displays the user's news feed, and onboarding during first run, on the For You screen.</li>
0 commit comments