1[versions]
2
3# Plugins
4agp = "8.13.2"
5kotlin = "2.3.0"
6
7# AndroidX
8activity = "1.12.2"
9appcompat = "1.7.1"
10core-ktx = "1.17.0"
11constraint-layout = "2.2.1"
12datastore-preferences = "1.2.0"
13
14# Material
15material = "1.13.0"
16
17# Testing
18espresso-core = "3.7.0"
19androidx-junit = "1.3.0"
20junit = "4.13.2"
21
22
23[plugins]
24android-application = { id = "com.android.application", version.ref = "agp" }
25android-library = { id = "com.android.library", version.ref = "agp" }
26jetbrains-kotlin-android = { id = "org.jetbrains.kotlin.android", version.ref = "kotlin" }
27
28
29[libraries]
30
31# AndroidX
32androidx-activity = { group = "androidx.activity", name = "activity", version.ref = "activity" }
33androidx-appcompat = { group = "androidx.appcompat", name = "appcompat", version.ref = "appcompat" }
34androidx-constraintlayout = { group = "androidx.constraintlayout", name = "constraintlayout", version.ref = "constraint-layout" }
35androidx-core-ktx = { group = "androidx.core", name = "core-ktx", version.ref = "core-ktx" }
36androidx-datastore-preferences = { group = "androidx.datastore", name = "datastore-preferences", version.ref = "datastore-preferences" }
37
38#Material
39material = { group = "com.google.android.material", name = "material", version.ref = "material" }
40
41# Testing
42androidx-espresso-core = { group = "androidx.test.espresso", name = "espresso-core", version.ref = "espresso-core" }
43androidx-junit = { group = "androidx.test.ext", name = "junit", version.ref = "androidx-junit" }
44junit = { group = "junit", name = "junit", version.ref = "junit" }
45
46[bundles]
47androidx = [
48 "androidx-activity",
49 "androidx-appcompat",
50 "androidx-constraintlayout",
51 "androidx-core-ktx",
52 "androidx-datastore-preferences",
53]