Skip to content

Commit d6455f1

Browse files
authored
Merge branch 'main' into jetcaster/m3-filterchip
2 parents 2b587a1 + c98fc47 commit d6455f1

File tree

13 files changed

+92
-140
lines changed

13 files changed

+92
-140
lines changed

JetLagged/app/build.gradle.kts

Lines changed: 0 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -122,8 +122,6 @@ dependencies {
122122
implementation(libs.androidx.compose.ui.tooling.preview)
123123
debugImplementation(libs.androidx.compose.ui.tooling)
124124

125-
implementation(libs.accompanist.flowlayout)
126-
127125
implementation(libs.coil.kt.compose)
128126

129127
androidTestImplementation(libs.junit)

JetLagged/gradle/libs.versions.toml

Lines changed: 0 additions & 3 deletions
Original file line numberDiff line numberDiff line change
@@ -61,11 +61,8 @@ version-catalog-update = "0.8.5"
6161

6262
[libraries]
6363
accompanist-adaptive = { module = "com.google.accompanist:accompanist-adaptive", version.ref = "accompanist" }
64-
accompanist-flowlayout = { module = "com.google.accompanist:accompanist-flowlayout", version.ref = "accompanist" }
65-
accompanist-pager = { module = "com.google.accompanist:accompanist-pager", version.ref = "accompanist" }
6664
accompanist-permissions = { module = "com.google.accompanist:accompanist-permissions", version.ref = "accompanist" }
6765
accompanist-swiperefresh = { module = "com.google.accompanist:accompanist-swiperefresh", version.ref = "accompanist" }
68-
accompanist-systemuicontroller = { module = "com.google.accompanist:accompanist-systemuicontroller", version.ref = "accompanist" }
6966
androidx-activity-compose = { module = "androidx.activity:activity-compose", version.ref = "androidx-activity-compose" }
7067
androidx-activity-ktx = { module = "androidx.activity:activity-ktx", version.ref = "androidx-activity-compose" }
7168
androidx-appcompat = { module = "androidx.appcompat:appcompat", version.ref = "androidx-appcompat" }

JetNews/app/build.gradle.kts

Lines changed: 0 additions & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -100,7 +100,6 @@ dependencies {
100100
debugImplementation(libs.androidx.compose.ui.tooling)
101101

102102
implementation(libs.accompanist.swiperefresh)
103-
implementation(libs.accompanist.systemuicontroller)
104103

105104
implementation(libs.androidx.appcompat)
106105
implementation(libs.androidx.activity.ktx)

JetNews/gradle/libs.versions.toml

Lines changed: 0 additions & 3 deletions
Original file line numberDiff line numberDiff line change
@@ -61,11 +61,8 @@ version-catalog-update = "0.8.5"
6161

6262
[libraries]
6363
accompanist-adaptive = { module = "com.google.accompanist:accompanist-adaptive", version.ref = "accompanist" }
64-
accompanist-flowlayout = { module = "com.google.accompanist:accompanist-flowlayout", version.ref = "accompanist" }
65-
accompanist-pager = { module = "com.google.accompanist:accompanist-pager", version.ref = "accompanist" }
6664
accompanist-permissions = { module = "com.google.accompanist:accompanist-permissions", version.ref = "accompanist" }
6765
accompanist-swiperefresh = { module = "com.google.accompanist:accompanist-swiperefresh", version.ref = "accompanist" }
68-
accompanist-systemuicontroller = { module = "com.google.accompanist:accompanist-systemuicontroller", version.ref = "accompanist" }
6966
androidx-activity-compose = { module = "androidx.activity:activity-compose", version.ref = "androidx-activity-compose" }
7067
androidx-activity-ktx = { module = "androidx.activity:activity-ktx", version.ref = "androidx-activity-compose" }
7168
androidx-appcompat = { module = "androidx.appcompat:appcompat", version.ref = "androidx-appcompat" }

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

Jetcaster/gradle/libs.versions.toml

Lines changed: 0 additions & 3 deletions
Original file line numberDiff line numberDiff line change
@@ -61,11 +61,8 @@ version-catalog-update = "0.8.5"
6161

6262
[libraries]
6363
accompanist-adaptive = { module = "com.google.accompanist:accompanist-adaptive", version.ref = "accompanist" }
64-
accompanist-flowlayout = { module = "com.google.accompanist:accompanist-flowlayout", version.ref = "accompanist" }
65-
accompanist-pager = { module = "com.google.accompanist:accompanist-pager", version.ref = "accompanist" }
6664
accompanist-permissions = { module = "com.google.accompanist:accompanist-permissions", version.ref = "accompanist" }
6765
accompanist-swiperefresh = { module = "com.google.accompanist:accompanist-swiperefresh", version.ref = "accompanist" }
68-
accompanist-systemuicontroller = { module = "com.google.accompanist:accompanist-systemuicontroller", version.ref = "accompanist" }
6966
androidx-activity-compose = { module = "androidx.activity:activity-compose", version.ref = "androidx-activity-compose" }
7067
androidx-activity-ktx = { module = "androidx.activity:activity-ktx", version.ref = "androidx-activity-compose" }
7168
androidx-appcompat = { module = "androidx.appcompat:appcompat", version.ref = "androidx-appcompat" }

0 commit comments

Comments
 (0)