mirror of
https://github.com/f-droid/fdroidserver.git
synced 2025-11-13 02:30:30 +03:00
scanner: support libs.versions.toml
This commit is contained in:
parent
528760acc8
commit
eff0ef48f4
17 changed files with 723 additions and 35 deletions
|
|
@ -0,0 +1,58 @@
|
|||
[versions]
|
||||
advrecyclerview = "1.0.0"
|
||||
appcompat = "1.6.1"
|
||||
constraint-layout = "2.0.4"
|
||||
crashlytics = "18.6.2"
|
||||
firebase-crashlytics-gradle-plugin = "2.9.9"
|
||||
flexbox = "3.0.0"
|
||||
gson = "2.5.6"
|
||||
kotlin = "1.9.20"
|
||||
kotlin-coroutines = "1.6.4"
|
||||
legacy-support-v4 = "1.0.0"
|
||||
lifecycle-extensions = "2.2.0"
|
||||
material = "1.11.0"
|
||||
preference-ktx = "1.2.1"
|
||||
recyclerview = "1.3.2"
|
||||
splashscreen ="1.0.1"
|
||||
koin ="3.5.0"
|
||||
room="2.6.1"
|
||||
storage = "1.5.5"
|
||||
swiperefreshlayout = "1.1.0"
|
||||
whatsnew = "0.1.7"
|
||||
ksp-plugin="1.9.20-1.0.14"
|
||||
|
||||
# plugins versions
|
||||
android-application-plugin="8.3.0"
|
||||
kotlin-android-plugin="1.9.22"
|
||||
google-services-plugin = "4.4.1"
|
||||
|
||||
[libraries]
|
||||
advrecyclerview = { module = "com.h6ah4i.android.widget.advrecyclerview:advrecyclerview", version.ref = "advrecyclerview" }
|
||||
androidx-appcompat = { module = "androidx.appcompat:appcompat", version.ref = "appcompat" }
|
||||
androidx-core-splashscreen = { module = "androidx.core:core-splashscreen", version.ref = "splashscreen" }
|
||||
androidx-legacy-support-v4 = { module = "androidx.legacy:legacy-support-v4", version.ref = "legacy-support-v4" }
|
||||
androidx-lifecycle-extensions = { module = "androidx.lifecycle:lifecycle-extensions", version.ref = "lifecycle-extensions" }
|
||||
androidx-preference-ktx = { module = "androidx.preference:preference-ktx", version.ref = "preference-ktx" }
|
||||
androidx-recyclerview = { module = "androidx.recyclerview:recyclerview", version.ref = "recyclerview" }
|
||||
androidx-room-runtime = { group = "androidx.room", name = "room-runtime", version.ref = "room" }
|
||||
androidx-room-ktx = { group = "androidx.room", name = "room-ktx", version.ref = "room" }
|
||||
androidx-room-compiler = { group = "androidx.room", name = "room-compiler", version.ref = "room" }
|
||||
androidx-swiperefreshlayout = { module = "androidx.swiperefreshlayout:swiperefreshlayout", version.ref = "swiperefreshlayout" }
|
||||
constraint-layout = { module = "com.android.support.constraint:constraint-layout", version.ref = "constraint-layout" }
|
||||
firebase-crashlytics = { module = "com.google.firebase:firebase-crashlytics", version.ref = "crashlytics" }
|
||||
flexbox = { module = "com.google.android.flexbox:flexbox", version.ref = "flexbox" }
|
||||
gson = { module = "org.immutables:gson", version.ref = "gson" }
|
||||
koin-android = { module = "io.insert-koin:koin-android", version.ref = "koin" }
|
||||
koin-androidx-navigation = { module = "io.insert-koin:koin-androidx-navigation", version.ref = "koin" }
|
||||
kotlin-stdlib-jdk7 = { module = "org.jetbrains.kotlin:kotlin-stdlib-jdk7", version.ref = "kotlin" }
|
||||
kotlinx-coroutines-core = { module = "org.jetbrains.kotlinx:kotlinx-coroutines-core", version.ref = "kotlin-coroutines" }
|
||||
material = { module = "com.google.android.material:material", version.ref = "material" }
|
||||
storage = { module = "com.anggrayudi:storage", version.ref = "storage" }
|
||||
whatsnew = { module = "io.github.tonnyl:whatsnew", version.ref = "whatsnew" }
|
||||
|
||||
[plugins]
|
||||
ksp = { id = "com.google.devtools.ksp", version.ref = "ksp-plugin" }
|
||||
android-application = { id = "com.android.application", version.ref = "android-application-plugin" }
|
||||
kotlin-android = { id = "org.jetbrains.kotlin.android", version.ref = "kotlin-android-plugin" }
|
||||
google-services = { id = "com.google.gms.google-services", version.ref = "google-services-plugin" }
|
||||
firebase-crashlytics = { id = "com.google.firebase.crashlytics", version.ref = "firebase-crashlytics-gradle-plugin" }
|
||||
5
tests/source-files/com.lolo.io.onelist/gradle/wrapper/gradle-wrapper.properties
vendored
Normal file
5
tests/source-files/com.lolo.io.onelist/gradle/wrapper/gradle-wrapper.properties
vendored
Normal file
|
|
@ -0,0 +1,5 @@
|
|||
distributionBase=GRADLE_USER_HOME
|
||||
distributionPath=wrapper/dists
|
||||
distributionUrl=https\://services.gradle.org/distributions/gradle-8.4-bin.zip
|
||||
zipStoreBase=GRADLE_USER_HOME
|
||||
zipStorePath=wrapper/dists
|
||||
Loading…
Add table
Add a link
Reference in a new issue