mirror of
https://github.com/kavishdevar/librepods.git
synced 2026-08-25 21:45:30 +02:00
android: refactor... stuff (1, see description)
use StateFlows instead of broadcasts/callbacks and add support for multiple devices. some features are yet to be implemented, marked with TODO. forgot to make incremental commits
This commit is contained in:
@@ -1,31 +1,37 @@
|
||||
[versions]
|
||||
accompanistPermissions = "0.37.3"
|
||||
agp = "9.2.1"
|
||||
kotlin = "2.3.21"
|
||||
coreKtx = "1.18.0"
|
||||
lifecycleRuntimeKtx = "2.10.0"
|
||||
kotlin = "2.4.0"
|
||||
coreKtx = "1.19.0"
|
||||
lifecycleRuntimeKtx = "2.11.0"
|
||||
activityCompose = "1.13.0"
|
||||
composeBom = "2026.05.00"
|
||||
composeBom = "2026.06.01"
|
||||
annotations = "26.1.0"
|
||||
navigationCompose = "2.9.8"
|
||||
constraintlayout = "2.2.1"
|
||||
haze = "1.7.2"
|
||||
hazeMaterials = "1.7.2"
|
||||
dynamicanimation = "1.1.0"
|
||||
aboutLibraries = "14.2.0"
|
||||
aboutLibraries = "15.0.3"
|
||||
materialIconsCore = "1.7.8"
|
||||
backdrop = "2.0.0-alpha03"
|
||||
billing = "8.3.0"
|
||||
hilt = "2.59.2"
|
||||
backdrop = "2.0.0"
|
||||
billing = "9.1.0"
|
||||
hilt = "2.60.1"
|
||||
xposed = "101.0.0"
|
||||
lifecycleProcess = "2.10.0"
|
||||
lifecycleProcess = "2.11.0"
|
||||
play = "2.0.2"
|
||||
nav3Core = "1.1.2"
|
||||
lifecycleViewmodelNav3 = "2.11.0-rc01"
|
||||
navevent = "1.1.1"
|
||||
m3 = "1.5.0-alpha21"
|
||||
foundationLayout = "1.11.2"
|
||||
uiTextGoogleFonts = "1.11.2"
|
||||
nav3Core = "1.1.4"
|
||||
lifecycleViewmodelNav3 = "2.11.0"
|
||||
navevent = "1.1.2"
|
||||
m3 = "1.5.0-alpha23"
|
||||
ksp = "2.3.10"
|
||||
room = "3.0.0"
|
||||
ktxSerialization = "1.11.0"
|
||||
junit = "4.13.2"
|
||||
junitVersion = "1.1.5"
|
||||
espressoCore = "3.5.1"
|
||||
appcompat = "1.6.1"
|
||||
material = "1.10.0"
|
||||
|
||||
[libraries]
|
||||
accompanist-permissions = { module = "com.google.accompanist:accompanist-permissions", version.ref = "accompanistPermissions" }
|
||||
@@ -46,7 +52,7 @@ androidx-dynamicanimation = { group = "androidx.dynamicanimation", name = "dynam
|
||||
androidx-compose-foundation-layout = { group = "androidx.compose.foundation", name = "foundation-layout"}
|
||||
androidx-compose-ui-tooling = { group = "androidx.compose.ui", name = "ui-tooling" }
|
||||
androidx-compose-ui = { group = "androidx.compose.ui", name = "ui" }
|
||||
aboutlibraries = { group = "com.mikepenz", name = "aboutlibraries", version.ref = "aboutLibraries" }
|
||||
aboutlibraries-compose = { group = "com.mikepenz", name = "aboutlibraries-compose", version.ref = "aboutLibraries" }
|
||||
aboutlibraries-compose-m3 = { group = "com.mikepenz", name = "aboutlibraries-compose-m3", version.ref = "aboutLibraries" }
|
||||
androidx-compose-material-icons-core = { group = "androidx.compose.material", name = "material-icons-core", version.ref = "materialIconsCore" }
|
||||
backdrop = { group = "io.github.kyant0", name = "backdrop", version.ref = "backdrop" }
|
||||
@@ -62,11 +68,21 @@ androidx-navigation3-runtime = { module = "androidx.navigation3:navigation3-runt
|
||||
androidx-navigation3-ui = { module = "androidx.navigation3:navigation3-ui", version.ref = "nav3Core" }
|
||||
androidx-lifecycle-viewmodel-navigation3 = { module = "androidx.lifecycle:lifecycle-viewmodel-navigation3", version.ref = "lifecycleViewmodelNav3" }
|
||||
androidx-navigationevent = { module = "androidx.navigationevent:navigationevent", version.ref = "navevent"}
|
||||
androidx-foundation-layout = { group = "androidx.compose.foundation", name = "foundation-layout", version.ref = "foundationLayout" }
|
||||
androidx-compose-ui-text-google-fonts = { group = "androidx.compose.ui", name = "ui-text-google-fonts", version.ref = "uiTextGoogleFonts" }
|
||||
androidx-room3-runtime = { group = "androidx.room3", name = "room3-runtime", version.ref = "room" }
|
||||
androidx-room3-compiler = { group = "androidx.room3", name = "room3-compiler", version.ref = "room" }
|
||||
kotlinx-serialization-cbor = { group = "org.jetbrains.kotlinx", name = "kotlinx-serialization-cbor", version = "ktxSerialization" }
|
||||
junit = { group = "junit", name = "junit", version.ref = "junit" }
|
||||
androidx-junit = { group = "androidx.test.ext", name = "junit", version.ref = "junitVersion" }
|
||||
androidx-espresso-core = { group = "androidx.test.espresso", name = "espresso-core", version.ref = "espressoCore" }
|
||||
androidx-appcompat = { group = "androidx.appcompat", name = "appcompat", version.ref = "appcompat" }
|
||||
material = { group = "com.google.android.material", name = "material", version.ref = "material" }
|
||||
|
||||
[plugins]
|
||||
android-application = { id = "com.android.application", version.ref = "agp" }
|
||||
kotlin-compose = { id = "org.jetbrains.kotlin.plugin.compose", version.ref = "kotlin" }
|
||||
kotlin-serialization = { id = "org.jetbrains.kotlin.plugin.serialization", version.ref = "kotlin" }
|
||||
aboutLibraries = { id = "com.mikepenz.aboutlibraries.plugin", version.ref = "aboutLibraries" }
|
||||
ksp = { id = "com.google.devtools.ksp", version.ref = "ksp" }
|
||||
room3 = { id = "androidx.room3", version.ref = "room" }
|
||||
hilt = { id = "com.google.dagger.hilt.android", version.ref = "hilt" }
|
||||
android-library = { id = "com.android.library", version.ref = "agp" }
|
||||
|
||||
BIN
Binary file not shown.
+5
-2
@@ -1,6 +1,9 @@
|
||||
#Mon Oct 07 22:30:36 IST 2024
|
||||
distributionBase=GRADLE_USER_HOME
|
||||
distributionPath=wrapper/dists
|
||||
distributionUrl=https\://services.gradle.org/distributions/gradle-9.4.1-bin.zip
|
||||
distributionUrl=https\://services.gradle.org/distributions/gradle-9.6.1-bin.zip
|
||||
networkTimeout=10000
|
||||
retries=0
|
||||
retryBackOffMs=500
|
||||
validateDistributionUrl=true
|
||||
zipStoreBase=GRADLE_USER_HOME
|
||||
zipStorePath=wrapper/dists
|
||||
|
||||
Reference in New Issue
Block a user