-
-
Notifications
You must be signed in to change notification settings - Fork 4
/
libs.versions.toml
33 lines (29 loc) · 1.2 KB
/
libs.versions.toml
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
[versions]
compileSdk = "35"
targetSdk = "35"
minSdk = "28"
agp = "8.7.2"
kotlin = "2.0.21"
licensereport = "0.9.8"
appcompat = "1.7.0"
kotlinx-coroutines-android = "1.9.0"
androidx-core = "1.15.0"
lifecycle-viewmodel = "2.8.7"
material = "1.12.0"
[libraries]
androidx-core = { group = "androidx.core", name = "core-ktx", version.ref = "androidx-core" }
androidx-lifecycle-viewmodel = { module = "androidx.lifecycle:lifecycle-viewmodel-ktx", version.ref = "lifecycle-viewmodel" }
androidx-appcompat = { group = "androidx.appcompat", name = "appcompat", version.ref = "appcompat" }
kotlinx-coroutines-android = { module = "org.jetbrains.kotlinx:kotlinx-coroutines-android", version.ref = "kotlinx-coroutines-android" }
material = { module = "com.google.android.material:material", version.ref = "material" }
[bundles]
implementation-app = [
"androidx-core",
"androidx-lifecycle-viewmodel",
"androidx-appcompat",
"kotlinx-coroutines-android",
"material"]
[plugins]
android-application = { id = "com.android.application", version.ref = "agp" }
kotlin-android = { id = "org.jetbrains.kotlin.android", version.ref = "kotlin" }
license-report = { id = "com.jaredsburrows.license", version.ref = "licensereport" }