Updating media controls to the next version

pull/552/head
Vitor Pamplona 2023-08-20 01:16:08 -04:00
rodzic 954a9d66fb
commit 784f867a8e
2 zmienionych plików z 7 dodań i 5 usunięć

Wyświetl plik

@ -20,7 +20,7 @@ android {
vectorDrawables { vectorDrawables {
useSupportLibrary true useSupportLibrary true
} }
resourceConfigurations += ['ar', 'cs', 'de', 'eo', 'es', 'fa', 'fr', 'hu', 'night', 'nl', 'pt-rBR', 'ru', 'sv-rSE', 'ta', 'tr', 'uk', 'zh', 'sh-rHK', 'zh-rTW', 'ja'] resourceConfigurations += ['ar', 'cs', 'de', 'eo', 'es', 'fa', 'fr', 'hu', 'ja', 'night', 'nl', 'pt-rBR', 'ru', 'sv-rSE', 'ta', 'tr', 'uk', 'zh', 'sh-rHK', 'zh-rTW']
} }
buildTypes { buildTypes {
@ -111,6 +111,7 @@ dependencies {
implementation "androidx.lifecycle:lifecycle-runtime-ktx:$lifecycle_version" implementation "androidx.lifecycle:lifecycle-runtime-ktx:$lifecycle_version"
implementation "androidx.lifecycle:lifecycle-livedata-ktx:$lifecycle_version" implementation "androidx.lifecycle:lifecycle-livedata-ktx:$lifecycle_version"
// Zoomable images
implementation "net.engawapg.lib:zoomable:1.4.3" implementation "net.engawapg.lib:zoomable:1.4.3"
// Biometrics // Biometrics
@ -119,7 +120,7 @@ dependencies {
// Websockets API // Websockets API
implementation 'com.squareup.okhttp3:okhttp:5.0.0-alpha.11' implementation 'com.squareup.okhttp3:okhttp:5.0.0-alpha.11'
// link preview // HTML Parsing for Link Preview
implementation 'org.jsoup:jsoup:1.16.1' implementation 'org.jsoup:jsoup:1.16.1'
// Encrypted Key Storage // Encrypted Key Storage
@ -159,9 +160,9 @@ dependencies {
// Language picker and Theme chooser // Language picker and Theme chooser
implementation 'androidx.appcompat:appcompat:1.6.1' implementation 'androidx.appcompat:appcompat:1.6.1'
implementation 'androidx.media3:media3-exoplayer-hls:1.1.0' implementation "androidx.media3:media3-exoplayer-hls:$media3_version"
implementation 'androidx.media3:media3-ui:1.1.0' implementation "androidx.media3:media3-ui:$media3_version"
implementation 'androidx.media3:media3-session:1.1.0' implementation "androidx.media3:media3-session:$media3_version"
// Local model for language identification // Local model for language identification
playImplementation 'com.google.mlkit:language-id:17.0.4' playImplementation 'com.google.mlkit:language-id:17.0.4'

Wyświetl plik

@ -11,6 +11,7 @@ buildscript {
coil_version = '2.4.0' coil_version = '2.4.0'
vico_version = '1.7.3' vico_version = '1.7.3'
exoplayer_version = '1.1.0' exoplayer_version = '1.1.0'
media3_version = '1.1.0'
} }
dependencies { dependencies {
classpath 'com.google.gms:google-services:4.3.15' classpath 'com.google.gms:google-services:4.3.15'