1
0
Fork 0
mirror of https://gitlab.com/futo-org/fcast.git synced 2025-07-31 14:27:01 +00:00

Android: Updated dependencies

This commit is contained in:
Michael Hollister 2025-07-09 22:54:09 -05:00
parent cebb149a92
commit 2080a5ccfc
4 changed files with 26 additions and 24 deletions

View file

@ -7,9 +7,14 @@
/.idea/workspace.xml /.idea/workspace.xml
/.idea/navEditor.xml /.idea/navEditor.xml
/.idea/assetWizardSettings.xml /.idea/assetWizardSettings.xml
/.idea/*
.DS_Store .DS_Store
/build /build
/captures /captures
.externalNativeBuild .externalNativeBuild
.cxx .cxx
local.properties local.properties
/app/defaultFlavor
/app/playstore

View file

@ -1,7 +1,7 @@
plugins { plugins {
id 'com.android.application' id 'com.android.application'
id 'org.jetbrains.kotlin.android' id 'org.jetbrains.kotlin.android'
id 'org.jetbrains.kotlin.plugin.serialization' version '1.8.10' id 'org.jetbrains.kotlin.plugin.serialization' version '2.2.0'
} }
ext { ext {
@ -20,12 +20,12 @@ if (keystorePropertiesFile.exists()) {
android { android {
namespace 'com.futo.fcast.receiver' namespace 'com.futo.fcast.receiver'
compileSdk 34 compileSdk 36
defaultConfig { defaultConfig {
applicationId "com.futo.fcast.receiver" applicationId "com.futo.fcast.receiver"
minSdk 24 minSdk 24
targetSdk 34 targetSdk 36
versionCode currentVersionCode versionCode currentVersionCode
versionName currentVersionName versionName currentVersionName
@ -69,11 +69,8 @@ android {
} }
} }
compileOptions { compileOptions {
sourceCompatibility JavaVersion.VERSION_1_8 sourceCompatibility JavaVersion.VERSION_21
targetCompatibility JavaVersion.VERSION_1_8 targetCompatibility JavaVersion.VERSION_21
}
kotlinOptions {
jvmTarget = '1.8'
} }
buildFeatures { buildFeatures {
buildConfig true buildConfig true
@ -84,18 +81,18 @@ android {
} }
dependencies { dependencies {
implementation 'androidx.core:core-ktx:1.12.0' implementation 'androidx.core:core-ktx:1.16.0'
implementation 'androidx.appcompat:appcompat:1.6.1' implementation 'androidx.appcompat:appcompat:1.7.1'
implementation 'com.google.android.material:material:1.11.0' implementation 'com.google.android.material:material:1.12.0'
implementation "org.jetbrains.kotlinx:kotlinx-serialization-json:1.6.2" implementation "org.jetbrains.kotlinx:kotlinx-serialization-json:1.9.0"
implementation 'androidx.media3:media3-exoplayer:1.2.0' implementation 'androidx.media3:media3-exoplayer:1.7.1'
implementation "com.squareup.okhttp3:okhttp:4.11.0" implementation "com.squareup.okhttp3:okhttp:5.1.0"
implementation 'com.journeyapps:zxing-android-embedded:4.3.0' implementation 'com.journeyapps:zxing-android-embedded:4.3.0'
implementation 'org.java-websocket:Java-WebSocket:1.5.4' implementation 'org.java-websocket:Java-WebSocket:1.6.0'
implementation 'androidx.media3:media3-ui:1.2.0' implementation 'androidx.media3:media3-ui:1.7.1'
implementation 'androidx.media3:media3-exoplayer-dash:1.2.0' implementation 'androidx.media3:media3-exoplayer-dash:1.7.1'
implementation 'androidx.media3:media3-exoplayer-hls:1.2.0' implementation 'androidx.media3:media3-exoplayer-hls:1.7.1'
testImplementation 'junit:junit:4.13.2' testImplementation 'junit:junit:4.13.2'
androidTestImplementation 'androidx.test.ext:junit:1.1.5' androidTestImplementation 'androidx.test.ext:junit:1.2.1'
androidTestImplementation 'androidx.test.espresso:espresso-core:3.5.1' androidTestImplementation 'androidx.test.espresso:espresso-core:3.6.1'
} }

View file

@ -1,6 +1,6 @@
// Top-level build file where you can add configuration options common to all sub-projects/modules. // Top-level build file where you can add configuration options common to all sub-projects/modules.
plugins { plugins {
id 'com.android.application' version '8.2.0' apply false id 'com.android.application' version '8.11.0' apply false
id 'com.android.library' version '8.2.0' apply false id 'com.android.library' version '8.11.0' apply false
id 'org.jetbrains.kotlin.android' version '1.8.0' apply false id 'org.jetbrains.kotlin.android' version '2.2.0' apply false
} }

View file

@ -1,6 +1,6 @@
#Mon May 01 06:24:43 CDT 2023 #Mon May 01 06:24:43 CDT 2023
distributionBase=GRADLE_USER_HOME distributionBase=GRADLE_USER_HOME
distributionUrl=https\://services.gradle.org/distributions/gradle-8.2-bin.zip distributionUrl=https\://services.gradle.org/distributions/gradle-8.13-bin.zip
distributionPath=wrapper/dists distributionPath=wrapper/dists
zipStorePath=wrapper/dists zipStorePath=wrapper/dists
zipStoreBase=GRADLE_USER_HOME zipStoreBase=GRADLE_USER_HOME