File tree 4 files changed +25
-10
lines changed
4 files changed +25
-10
lines changed Original file line number Diff line number Diff line change 1
1
plugins {
2
- id(" org.jetbrains.compose " )
3
- id(" com.android.application " )
4
- kotlin( " android " )
5
- id(" kotlin-parcelize " )
2
+ id(Deps . Plugins . Jetbrains . Compose . Id )
3
+ id(Deps . Plugins . Android . Application . Id )
4
+ id( Deps . Plugins . Jetbrains . Kotlin . Android . Id )
5
+ id(Deps . Plugins . Jetbrains . Kotlin . Parcelize . Id )
6
6
}
7
7
8
8
group = AppConfig .PACKAGE
Original file line number Diff line number Diff line change @@ -13,8 +13,8 @@ buildscript {
13
13
}
14
14
}
15
15
16
- group = " com.notes "
17
- version = " 1.0 "
16
+ group = AppConfig . PACKAGE
17
+ version = AppConfig . VERSION
18
18
19
19
allprojects {
20
20
repositories {
Original file line number Diff line number Diff line change @@ -10,6 +10,10 @@ object Deps {
10
10
const val Id = " org.jetbrains.kotlin.multiplatform"
11
11
}
12
12
13
+ object Android {
14
+ const val Id = " org.jetbrains.kotlin.android"
15
+ }
16
+
13
17
object Parcelize {
14
18
const val Id = " kotlin-parcelize"
15
19
}
@@ -20,6 +24,10 @@ object Deps {
20
24
object Library {
21
25
const val Id = " com.android.library"
22
26
}
27
+
28
+ object Application {
29
+ const val Id = " com.android.application"
30
+ }
23
31
}
24
32
25
33
object SQDelight {
@@ -33,6 +41,13 @@ object Deps {
33
41
const val Activity = " androidx.activity:activity-compose:$Version "
34
42
const val AppCompat = " androidx.appcompat:appcompat:$Version "
35
43
const val CoreKtx = " androidx.core:core-ktx:1.6.0"
44
+ const val Sqlite = " androidx.sqlite:sqlite:2.2.0-alpha02"
45
+
46
+ object Compose {
47
+ object Accompanist {
48
+ const val SystemUiController = " com.google.accompanist:accompanist-systemuicontroller:0.17.0"
49
+ }
50
+ }
36
51
}
37
52
38
53
const val JUnit = " junit:junit:4.13.2"
Original file line number Diff line number Diff line change @@ -2,12 +2,12 @@ import org.jetbrains.compose.compose
2
2
import org.jetbrains.compose.desktop.application.dsl.TargetFormat
3
3
4
4
plugins {
5
- kotlin( " multiplatform " )
6
- id(" org.jetbrains.compose " )
5
+ id( Deps . Plugins . Jetbrains . Kotlin . Multiplatform . Id )
6
+ id(Deps . Plugins . Jetbrains . Compose . Id )
7
7
}
8
8
9
- group = " com.notes "
10
- version = " 1.0 "
9
+ group = AppConfig . PACKAGE
10
+ version = AppConfig . VERSION
11
11
12
12
kotlin {
13
13
jvm {
You can’t perform that action at this time.
0 commit comments