-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathbuild.gradle
76 lines (59 loc) · 2.09 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
49
50
51
52
53
54
55
56
57
58
59
60
61
62
63
64
65
66
67
68
69
70
71
72
73
74
buildscript {
ext {
kotlin_version = '1.8.0'
accompanist_version = '0.32.0'
coil_version = '2.4.0'
compose_animation_version = '1.4.3'
compose_compiler_version = '1.5.3'
compose_foundation_version = '1.4.3'
compose_material_version = '1.4.3'
compose_material3_version = '1.2.0-alpha02'
compose_runtime_version = '1.5.1'
compose_ui_version = '1.4.3'
coroutines = '1.7.3'
gms_version = '4.4.0'
hilt_navigation_version = '1.0.0'
// hilt_version = '2.48.1'
koin_version = '3.5.0'
koin_compose_version = '1.1.0'
ktlint_version = '0.46.1'
mockk = "1.13.8"
navigation_version = '2.7.1'
room_version = '2.5.2'
ksp_version = '1.9.10-1.0.13'
}
dependencies {
// classpath "com.google.dagger:hilt-android-gradle-plugin:$hilt_version"
classpath "org.jetbrains.kotlin:kotlin-gradle-plugin:$kotlin_version"
// classpath 'com.squareup.sqldelight:gradle-plugin:1.5.5'
}
repositories {
mavenCentral()
google()
}
}// Top-level build file where you can add configuration options common to all sub-projects/modules.
plugins {
// id 'com.squareup.sqldelight'
id 'com.android.application' version '8.1.2' apply false
id 'com.android.library' version '8.1.2' apply false
// id 'app.cash.sqldelight' version '2.0.0' apply false
// id 'com.diffplug.spotless' version "$spotless_version"
id 'com.google.devtools.ksp' version "1.9.10-1.0.13" apply false
id 'org.jetbrains.kotlin.android' version "$kotlin_version" apply false
// id 'org.jlleitschuh.gradle.ktlint' version '11.6.1'
id 'org.jetbrains.kotlin.jvm' version '1.9.10' apply false
}
//sqldelight {
// databases {
// MyDatabase {
// packageName = "com.badvok.ingreed"
// }
// dialect "app.cash.sqldelight:mysql-dialect:2.0.0"
//
// // Version catalogs also work!
// dialect libs.sqldelight.dialects.mysql
// }
//}
task clean(type: Delete) {
delete rootProject.buildDir
}