Skip to content

Commit

Permalink
chore: bump deps
Browse files Browse the repository at this point in the history
  • Loading branch information
zyrouge committed Oct 20, 2024
1 parent bea35bf commit 934536e
Show file tree
Hide file tree
Showing 4 changed files with 14 additions and 13 deletions.
4 changes: 3 additions & 1 deletion .gitignore
Original file line number Diff line number Diff line change
Expand Up @@ -20,4 +20,6 @@ node_modules
phrasey-dist
app/src/main/assets/i18n
dist
secrets
secrets
.kotlin

Original file line number Diff line number Diff line change
Expand Up @@ -44,7 +44,7 @@ fun PlaylistsView(context: ViewContext) {
var showPlaylistCreator by remember { mutableStateOf(false) }

val openPlaylistLauncher = rememberLauncherForActivityResult(
ActivityResultContracts.CreateDocument(MediaExposer.MIMETYPE_M3U8)
ActivityResultContracts.OpenDocument()
) { uri ->
uri?.let { _ ->
try {
Expand Down Expand Up @@ -73,7 +73,7 @@ fun PlaylistsView(context: ViewContext) {
showPlaylistCreator = true
},
showPlaylistPicker = {
openPlaylistLauncher.launch(null)
openPlaylistLauncher.launch(arrayOf(MediaExposer.MIMETYPE_M3U8))
},
)
Spacer(modifier = Modifier.height(4.dp))
Expand Down
17 changes: 8 additions & 9 deletions gradle/libs.versions.toml
Original file line number Diff line number Diff line change
@@ -1,28 +1,27 @@
[versions]
activity-compose = "1.8.2"
activity-compose = "1.9.3"
coil = "2.6.0"
compose = "1.6.6"
compose-material = "1.6.6"
compose-material3 = "1.3.0-alpha05"
compose-navigation = "2.7.7"
core = "1.13.0"
compose = "1.7.4"
compose-material = "1.7.4"
compose-material3 = "1.3.0"
compose-navigation = "2.8.3"
core = "1.13.1"
core-splashscreen = "1.0.1"
documentfile = "1.0.1"
fuzzywuzzy = "1.4.0"
junit-jupiter = "5.11.0"
kotlinx-serialization-json = "1.7.3"
lifecycle-runtime = "2.7.0"
lifecycle-runtime = "2.8.6"
media = "1.7.0"
okhttp3 = "4.12.0"

android-gradle-plugin = "8.3.2"
android-gradle-plugin = "8.7.1"
kotlin-gradle-plugin = "2.0.20"
kotlin-serialization-plugin = "2.0.20"

compile-sdk = "34"
min-sdk = "28"
target-sdk = "34"
testng = "6.9.6"

[libraries]
activity-compose = { group = "androidx.activity", name = "activity-compose", version.ref = "activity-compose" }
Expand Down
2 changes: 1 addition & 1 deletion gradle/wrapper/gradle-wrapper.properties
Original file line number Diff line number Diff line change
@@ -1,6 +1,6 @@
#Thu Apr 18 14:18:59 IST 2024
distributionBase=GRADLE_USER_HOME
distributionPath=wrapper/dists
distributionUrl=https\://services.gradle.org/distributions/gradle-8.6-bin.zip
distributionUrl=https\://services.gradle.org/distributions/gradle-8.10.2-bin.zip
zipStoreBase=GRADLE_USER_HOME
zipStorePath=wrapper/dists

0 comments on commit 934536e

Please sign in to comment.