-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathbuild.gradle
45 lines (42 loc) · 1.42 KB
/
build.gradle
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
34
35
36
37
38
39
40
41
42
43
44
45
// Top-level build file where you can add configuration options common to all sub-projects/modules.
buildscript {
ext {
kotlinVersion = '1.7.20'
navigationVersion = '2.5.3'
ktlintVersion = '0.44.0'
hiltVersion = '2.44'
}
dependencies {
classpath "org.jetbrains.kotlin:kotlin-gradle-plugin:$kotlinVersion"
classpath "androidx.navigation:navigation-safe-args-gradle-plugin:$navigationVersion"
classpath "com.google.dagger:hilt-android-gradle-plugin:$hiltVersion"
}
}
plugins {
id 'com.android.application' version '7.3.1' apply false
id 'com.android.library' version '7.3.1' apply false
id 'org.jetbrains.kotlin.android' version "$kotlinVersion" apply false
id 'com.google.dagger.hilt.android' version "$hiltVersion" apply false
}
ext {
// Sdk and tools
minSdkVersion = 26
targetSdkVersion = 34
compileSdkVersion = 34
// App dependencies
composeCompilerVersion = '1.3.2'
composeVersion = '1.3.1'
materialVersion = '1.1.0-alpha02'
activityComposeVersion = '1.6.1'
accompanistVersion = '0.27.0'
hiltAndroidXVersion = '1.0.0'
roomVersion = '2.4.3'
archLifecycleVersion = '2.6.0-alpha03'
coroutinesVersion = '1.6.2'
truthVersion = '1.1.2'
dataStoreVersion = '1.0.0'
googleMaterialVersion = '1.7.0'
protobufVersion = '4.0.0-rc-2'
composeLottieVersion = "5.2.0"
splittiesVersion = "3.0.0-rc03"
}