diff --git a/app/build.gradle b/app/build.gradle index d1634c08b..b7dfde4ca 100644 --- a/app/build.gradle +++ b/app/build.gradle @@ -20,7 +20,7 @@ android { vectorDrawables { 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 { @@ -111,6 +111,7 @@ dependencies { implementation "androidx.lifecycle:lifecycle-runtime-ktx:$lifecycle_version" implementation "androidx.lifecycle:lifecycle-livedata-ktx:$lifecycle_version" + // Zoomable images implementation "net.engawapg.lib:zoomable:1.4.3" // Biometrics @@ -119,7 +120,7 @@ dependencies { // Websockets API implementation 'com.squareup.okhttp3:okhttp:5.0.0-alpha.11' - // link preview + // HTML Parsing for Link Preview implementation 'org.jsoup:jsoup:1.16.1' // Encrypted Key Storage @@ -159,9 +160,9 @@ dependencies { // Language picker and Theme chooser implementation 'androidx.appcompat:appcompat:1.6.1' - implementation 'androidx.media3:media3-exoplayer-hls:1.1.0' - implementation 'androidx.media3:media3-ui:1.1.0' - implementation 'androidx.media3:media3-session:1.1.0' + implementation "androidx.media3:media3-exoplayer-hls:$media3_version" + implementation "androidx.media3:media3-ui:$media3_version" + implementation "androidx.media3:media3-session:$media3_version" // Local model for language identification playImplementation 'com.google.mlkit:language-id:17.0.4' diff --git a/build.gradle b/build.gradle index d17ae80dd..73dba8106 100644 --- a/build.gradle +++ b/build.gradle @@ -11,6 +11,7 @@ buildscript { coil_version = '2.4.0' vico_version = '1.7.3' exoplayer_version = '1.1.0' + media3_version = '1.1.0' } dependencies { classpath 'com.google.gms:google-services:4.3.15'