Skip to content

Commit

Permalink
Bump androidx.core:core-ktx from 1.13.1 to 1.15.0 (#3207)
Browse files Browse the repository at this point in the history
  • Loading branch information
dependabot[bot] authored Jan 29, 2025
1 parent 9d7e782 commit f4efbe4
Show file tree
Hide file tree
Showing 3 changed files with 3 additions and 3 deletions.
2 changes: 1 addition & 1 deletion gradle/libs.versions.toml
Original file line number Diff line number Diff line change
Expand Up @@ -254,7 +254,7 @@ androidx-arch-core = "androidx.arch.core:core-testing:2.2.0"
androidx-car = "androidx.car.app:app:1.4.0"
androidx-cardview = "androidx.cardview:cardview:1.0.0"
androidx-constraintlayout = "androidx.constraintlayout:constraintlayout:2.1.4"
androidx-core-ktx = "androidx.core:core-ktx:1.13.1"
androidx-core-ktx = "androidx.core:core-ktx:1.15.0"
androidx-mediarouter = "androidx.mediarouter:mediarouter:1.7.0"
androidx-palette = "androidx.palette:palette:1.0.0"
androidx-preference-ktx = "androidx.preference:preference-ktx:1.2.1"
Expand Down
Original file line number Diff line number Diff line change
Expand Up @@ -685,7 +685,7 @@ class PodcastAdapter(
podcast.podcastUrl?.let { url ->
if (url.isNotBlank()) {
try {
startActivity(context, webUrlToIntent(url), null)
context.startActivity(webUrlToIntent(url), null)
} catch (e: Exception) {
Timber.e(e, "Failed to open podcast web page.")
}
Expand Down
Original file line number Diff line number Diff line change
Expand Up @@ -99,7 +99,7 @@ class ShareListCreateViewModel @Inject constructor(
type = "text/plain"
putExtra(Intent.EXTRA_TEXT, url)
}
startActivity(context, Intent.createChooser(intent, label), null)
context.startActivity(Intent.createChooser(intent, label), null)
trackShareEvent(
AnalyticsEvent.SHARE_PODCASTS_LIST_PUBLISH_SUCCEEDED,
AnalyticsProp.countMap(selectedPodcasts.size),
Expand Down

0 comments on commit f4efbe4

Please sign in to comment.