-
Notifications
You must be signed in to change notification settings - Fork 36
/
dependencies.gradle
22 lines (19 loc) · 1.26 KB
/
dependencies.gradle
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
ext {
//----------------------------------------------------------------------------------------------
// Gradle Dependencies
//----------------------------------------------------------------------------------------------
// Android Plugin for Gradle : https://mvnrepository.com/artifact/com.android.tools.build/gradle?repo=google | https://developer.android.com/studio/releases/gradle-plugin.html#updating-plugin
androidGradle = '8.3.0'
// Kotlin : https://mvnrepository.com/artifact/org.jetbrains.kotlin/kotlin-gradle-plugin
// Kotlin Compose Compatibility Map : https://developer.android.com/jetpack/androidx/releases/compose-kotlin
kotlin = '1.9.22'
// Compose Compiler : https://developer.android.com/jetpack/androidx/releases/compose-compiler
composeCompiler = '1.5.10'
//----------------------------------------------------------------------------------------------
// App Dependencies
//----------------------------------------------------------------------------------------------
// Compose Bill of Materials : https://mvnrepository.com/artifact/androidx.compose/compose-bom
composeBoM = "2024.02.01"
// Compose Navigation : https://developer.android.com/jetpack/compose/navigation
composeNav = '2.7.7'
}