mirror of
https://github.com/dolphin-emu/dolphin.git
synced 2026-04-04 20:00:43 -04:00
Migrate plugin and dependency versions to a Gradle version catalog and update dependencies to their latest available versions.
62 lines
3.8 KiB
TOML
62 lines
3.8 KiB
TOML
[versions]
|
|
agp = "9.1.0"
|
|
appcompat = "1.7.1"
|
|
benchmarkMacroJunit4 = "1.5.0-alpha04"
|
|
cardview = "1.0.0"
|
|
coil = "2.7.0"
|
|
constraintlayout = "2.2.1"
|
|
coreKtx = "1.18.0"
|
|
coreSplashscreen = "1.2.0"
|
|
desugar_jdk_libs = "2.1.5"
|
|
espressoCore = "3.7.0"
|
|
filepicker = "4.2.1"
|
|
fragmentKtx = "1.8.9"
|
|
junit = "1.3.0"
|
|
kotlin = "2.3.20"
|
|
kotlinxCoroutinesAndroid = "1.10.2"
|
|
kotlinxSerializationJson = "1.10.0"
|
|
leanback = "1.2.0"
|
|
lifecycle = "2.10.0"
|
|
material = "1.13.0"
|
|
preferenceKtx = "1.2.1"
|
|
profileinstaller = "1.4.1"
|
|
recyclerview = "1.4.0"
|
|
slidingpanelayout = "1.2.0"
|
|
swiperefreshlayout = "1.2.0"
|
|
tvprovider = "1.1.0"
|
|
uiautomator = "2.3.0"
|
|
|
|
[libraries]
|
|
androidx-appcompat = { group = "androidx.appcompat", name = "appcompat", version.ref = "appcompat" }
|
|
androidx-benchmark-macro-junit4 = { group = "androidx.benchmark", name = "benchmark-macro-junit4", version.ref = "benchmarkMacroJunit4" }
|
|
androidx-cardview = { group = "androidx.cardview", name = "cardview", version.ref = "cardview" }
|
|
androidx-constraintlayout = { group = "androidx.constraintlayout", name = "constraintlayout", version.ref = "constraintlayout" }
|
|
androidx-core-ktx = { group = "androidx.core", name = "core-ktx", version.ref = "coreKtx" }
|
|
androidx-core-splashscreen = { group = "androidx.core", name = "core-splashscreen", version.ref = "coreSplashscreen" }
|
|
androidx-espresso-core = { group = "androidx.test.espresso", name = "espresso-core", version.ref = "espressoCore" }
|
|
androidx-fragment-ktx = { group = "androidx.fragment", name = "fragment-ktx", version.ref = "fragmentKtx" }
|
|
androidx-junit = { group = "androidx.test.ext", name = "junit", version.ref = "junit" }
|
|
androidx-leanback = { group = "androidx.leanback", name = "leanback", version.ref = "leanback" }
|
|
androidx-lifecycle-runtime-ktx = { group = "androidx.lifecycle", name = "lifecycle-runtime-ktx", version.ref = "lifecycle" }
|
|
androidx-lifecycle-viewmodel-ktx = { group = "androidx.lifecycle", name = "lifecycle-viewmodel-ktx", version.ref = "lifecycle" }
|
|
androidx-preference-ktx = { group = "androidx.preference", name = "preference-ktx", version.ref = "preferenceKtx" }
|
|
androidx-profileinstaller = { group = "androidx.profileinstaller", name = "profileinstaller", version.ref = "profileinstaller" }
|
|
androidx-recyclerview = { group = "androidx.recyclerview", name = "recyclerview", version.ref = "recyclerview" }
|
|
androidx-slidingpanelayout = { group = "androidx.slidingpanelayout", name = "slidingpanelayout", version.ref = "slidingpanelayout" }
|
|
androidx-swiperefreshlayout = { group = "androidx.swiperefreshlayout", name = "swiperefreshlayout", version.ref = "swiperefreshlayout" }
|
|
androidx-tvprovider = { group = "androidx.tvprovider", name = "tvprovider", version.ref = "tvprovider" }
|
|
androidx-uiautomator = { group = "androidx.test.uiautomator", name = "uiautomator", version.ref = "uiautomator" }
|
|
coil = { group = "io.coil-kt", name = "coil", version.ref = "coil" }
|
|
desugar_jdk_libs = { group = "com.android.tools", name = "desugar_jdk_libs", version.ref = "desugar_jdk_libs" }
|
|
filepicker = { group = "com.nononsenseapps", name = "filepicker", version.ref = "filepicker" }
|
|
kotlinx-coroutines-android = { group = "org.jetbrains.kotlinx", name = "kotlinx-coroutines-android", version.ref = "kotlinxCoroutinesAndroid" }
|
|
kotlinx-serialization-json = { group = "org.jetbrains.kotlinx", name = "kotlinx-serialization-json", version.ref = "kotlinxSerializationJson" }
|
|
material = { group = "com.google.android.material", name = "material", version.ref = "material" }
|
|
|
|
[plugins]
|
|
android-application = { id = "com.android.application", version.ref = "agp" }
|
|
android-library = { id = "com.android.library", version.ref = "agp" }
|
|
android-test = { id = "com.android.test", version.ref = "agp" }
|
|
androidx-baselineprofile = { id = "androidx.baselineprofile", version.ref = "benchmarkMacroJunit4" }
|
|
kotlin-serialization = { id = "org.jetbrains.kotlin.plugin.serialization", version.ref = "kotlin" }
|