FossifyGallery/gradle/libs.versions.toml

84 lines
3.5 KiB
TOML
Raw Normal View History

2023-08-17 14:46:52 +02:00
[versions]
#jetbrains
2024-09-20 20:17:54 +02:00
kotlin = "1.9.25"
2023-08-17 14:46:52 +02:00
#KSP
2024-09-20 20:17:54 +02:00
ksp = "1.9.25-1.0.20"
#Detekt
detekt = "1.23.3"
2023-08-17 14:46:52 +02:00
#AndroidX
androidx-swiperefreshlayout = "1.1.0"
androidx-constraintlayout = "2.1.4"
#exif
exif = "1.0.1"
#Room
2024-01-01 20:24:05 +01:00
room = "2.6.1"
2023-12-24 15:33:46 +01:00
#Fossify
2024-09-21 18:12:26 +02:00
commons = "bad369c853"
2024-03-10 02:15:19 +01:00
#Gradle4
2024-09-20 20:17:54 +02:00
gradlePlugins-agp = "8.6.1"
2023-08-17 14:46:52 +02:00
#Other
androidGifDrawable = "1.2.25"
androidImageCropper = "4.5.0"
2023-10-03 17:55:30 +02:00
apng = "2.28.0"
awebp = "2.28.0"
glideCompiler = "4.16.0"
zjupureWebpdecoder = "2.6.4.16.0"
2023-12-30 11:31:15 +01:00
gestureviews = "e706487a14"
2023-08-17 14:46:52 +02:00
androidsvgAar = "1.4"
2024-09-22 21:41:53 +02:00
androidphotofilters = "193f2ae509"
2023-08-17 14:46:52 +02:00
sanselan = "0.97-incubator"
2024-09-09 11:32:02 +02:00
media3Exoplayer = "1.4.1"
2024-03-10 02:15:19 +01:00
okhttp = "4.12.0"
2024-09-09 11:32:02 +02:00
okio = "3.6.0"
2023-08-17 14:46:52 +02:00
picasso = "2.71828"
subsamplingScaleImageView = "d705c3c4ad"
2023-08-17 14:46:52 +02:00
#build
app-build-compileSDKVersion = "34"
2024-09-05 16:36:51 +02:00
app-build-targetSDK = "34"
2023-08-17 14:46:52 +02:00
app-build-minimumSDK = "23"
app-build-javaVersion = "VERSION_17"
app-build-kotlinJVMTarget = "17"
#versioning
2023-12-12 15:16:44 +01:00
app-version-appId = "org.fossify.gallery"
2024-09-21 18:51:03 +02:00
app-version-versionCode = "8"
app-version-versionName = "1.2.0"
2023-08-17 14:46:52 +02:00
[libraries]
#AndroidX
androidx-media3-exoplayer = { module = "androidx.media3:media3-exoplayer", version.ref = "media3Exoplayer" }
androidx-swiperefreshlayout = { module = "androidx.swiperefreshlayout:swiperefreshlayout", version.ref = "androidx-swiperefreshlayout" }
androidx-constraintlayout = { module = "androidx.constraintlayout:constraintlayout", version.ref = "androidx-constraintlayout" }
#exif
exif = { module = "it.sephiroth.android.exif:library", version.ref = "exif" }
#Room
androidx-room-runtime = { module = "androidx.room:room-runtime", version.ref = "room" }
androidx-room-ktx = { module = "androidx.room:room-ktx", version.ref = "room" }
androidx-room-compiler = { module = "androidx.room:room-compiler", version.ref = "room" }
2023-12-19 09:29:27 +01:00
#Fossify
fossify-commons = { module = "org.fossify:commons", version.ref = "commons" }
2023-08-17 14:46:52 +02:00
#Other
android-gif-drawable = { module = "pl.droidsonroids.gif:android-gif-drawable", version.ref = "androidGifDrawable" }
android-image-cropper = { module = "com.vanniktech:android-image-cropper", version.ref = "androidImageCropper" }
2023-12-30 11:31:15 +01:00
subsamplingscaleimageview = { module = "org.fossify:subsampling-scale-image-view", version.ref = "subsamplingScaleImageView" }
2023-08-17 14:46:52 +02:00
androidsvg-aar = { module = "com.caverock:androidsvg-aar", version.ref = "androidsvgAar" }
2023-12-30 11:31:15 +01:00
gestureviews = { module = "org.fossify:gestureviews", version.ref = "gestureviews" }
2024-09-22 21:41:53 +02:00
androidphotofilters = { module = "com.github.naveensingh:androidphotofilters", version.ref = "androidphotofilters" }
2023-08-17 14:46:52 +02:00
okhttp = { module = "com.squareup.okhttp3:okhttp", version.ref = "okhttp" }
okio = { module = "com.squareup.okio:okio", version.ref = "okio" }
sanselan = { module = "org.apache.sanselan:sanselan", version.ref = "sanselan" }
apng = { module = "com.github.penfeizhou.android.animation:apng", version.ref = "apng" }
awebp = { module = "com.github.penfeizhou.android.animation:awebp", version.ref = "awebp" }
glide-compiler = { module = "com.github.bumptech.glide:ksp", version.ref = "glideCompiler" }
zjupure-webpdecoder = { module = "com.github.zjupure:webpdecoder", version.ref = "zjupureWebpdecoder" }
2023-08-17 14:46:52 +02:00
picasso = { module = "com.squareup.picasso:picasso", version.ref = "picasso" }
2024-03-06 20:50:31 +01:00
avif-integration = { group = "com.github.bumptech.glide", name = "avif-integration", version.ref = "glideCompiler" }
2023-08-17 14:46:52 +02:00
[bundles]
room = [
"androidx-room-ktx",
"androidx-room-runtime",
]
[plugins]
android = { id = "com.android.application", version.ref = "gradlePlugins-agp" }
kotlinAndroid = { id = "org.jetbrains.kotlin.android", version.ref = "kotlin" }
ksp = { id = "com.google.devtools.ksp", version.ref = "ksp" }
detekt = { id = "io.gitlab.arturbosch.detekt", version.ref = "detekt" }