Skip to content

Commit c98fc47

Browse files
authored
[Jetcaster]: Update references in README (#1512)
# PR Summary PR adjusts the references in `Jetcaster/README.md`. It also fixes small typo (_`Advice` cannot be pluralized by adding the suffix -s_).
2 parents 655f88f + 7b71014 commit c98fc47

File tree

1 file changed

+4
-4
lines changed

1 file changed

+4
-4
lines changed

Jetcaster/README.md

Lines changed: 4 additions & 4 deletions
Original file line numberDiff line numberDiff line change
@@ -83,7 +83,7 @@ if you want to see an advanced Media sample built on Compose that uses Exoplayer
8383
refer to the [Media Toolkit sample][mediatoolkitsample].
8484

8585
The [official media app guidance for Wear OS][wearmediaguidance]
86-
advices to download content on the watch before listening to preserve power, this feature will be added to this sample in future iterations. You can
86+
recommends downloading content onto the watch before listening to preserve power, this feature will be added to this sample in future iterations. You can
8787
refer to the [Media Toolkit sample][mediatoolkitsample] to learn how to implement the media download feature.
8888

8989
### Architecture
@@ -94,7 +94,7 @@ own [ViewModel][viewmodel] which exposes a `StateFlow<ScreenState>` for the UI t
9494

9595
### Podcast data
9696

97-
The podcast data in this sample is dynamically fetched from a number of podcast RSS feeds, which are listed in [`Feeds.kt`](mobile/src/main/java/com/example/jetcaster/data/Feeds.kt).
97+
The podcast data in this sample is dynamically fetched from a number of podcast RSS feeds, which are listed in [`Feeds.kt`](core/data/src/main/java/com/example/jetcaster/core/data/network/Feeds.kt).
9898

9999
The [`PodcastRepository`][podcastrepo] class is responsible for handling the data fetching of all podcast information:
100100

@@ -103,11 +103,11 @@ The [`PodcastRepository`][podcastrepo] class is responsible for handling the dat
103103

104104
### Follow podcasts
105105

106-
The sample allows users to 'follow' podcasts, which is implemented within the data layer in the [`PodcastFollowedEntry`](mobile/src/main/java/com/example/jetcaster/data/PodcastFollowedEntry.kt) entity class, and as functions in [PodcastStore][podcaststore]: `followPodcast()`, `unfollowPodcast()`.
106+
The sample allows users to 'follow' podcasts, which is implemented within the data layer in the [`PodcastFollowedEntry`](core/data/src/main/java/com/example/jetcaster/core/data/database/model/PodcastFollowedEntry.kt) entity class, and as functions in [PodcastStore][podcaststore]: `followPodcast()`, `unfollowPodcast()`.
107107

108108
### Date + time
109109

110-
The sample uses the JDK 8 [date and time APIs](https://developer.android.com/reference/java/time/package-summary) through the [desugaring support][jdk8desugar] available in Android Gradle Plugin 4.0+. Relevant Room [`TypeConverters`](https://developer.android.com/reference/kotlin/androidx/room/TypeConverters) are implemented in [`DateTimeTypeConverters.kt`](mobile/src/main/java/com/example/jetcaster/data/room/DateTimeTypeConverters.kt).
110+
The sample uses the JDK 8 [date and time APIs](https://developer.android.com/reference/java/time/package-summary) through the [desugaring support][jdk8desugar] available in Android Gradle Plugin 4.0+. Relevant Room [`TypeConverters`](https://developer.android.com/reference/kotlin/androidx/room/TypeConverters) are implemented in [`DateTimeTypeConverters.kt`](core/data/src/main/java/com/example/jetcaster/core/data/database/DateTimeTypeConverters.kt).
111111

112112
## License
113113

0 commit comments

Comments
 (0)