-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathbuild.gradle
48 lines (41 loc) · 1.36 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
46
47
48
// Top-level build file where you can add configuration options common to all sub-projects/modules.
buildscript {
ext {
compose_compiler_version = "1.5.15"
compose_bom_version = "2025.03.01"
lifecycle_version = '2.8.7'
arch_version = "2.1.0"
kotlin_version = "2.1.20"
hilt_version = "2.56.1"
voyager_compose = '1.1.0-beta03'
landscapist_version = '2.4.7'
okhttp_bom_version = "4.12.0"
}
repositories {
google()
mavenCentral()
}
dependencies {
classpath 'com.android.tools.build:gradle:8.9.1'
classpath "org.jetbrains.kotlin:kotlin-gradle-plugin:$kotlin_version"
classpath "com.google.dagger:hilt-android-gradle-plugin:$hilt_version"
// NOTE: Do not place your application dependencies here; they belong
// in the individual module build.gradle files
}
}
plugins {
id 'org.jetbrains.kotlin.plugin.compose' version "$kotlin_version"
id 'com.google.devtools.ksp' version "$kotlin_version-1.0.31" apply false
}
composeCompiler {
enableStrongSkippingMode = true
reportsDestination = layout.buildDirectory.dir("compose_compiler")
}
tasks.register('clean', Delete) {
delete rootProject.buildDir
}
ext._minSdkVersion = 21
ext._compileSdkVersion = 35
ext._targetSdkVersion = 35
ext._versionCode = 1
ext._versionName = "1.0.0"