forked from humawork/compose-charts
-
Notifications
You must be signed in to change notification settings - Fork 0
/
build.gradle.kts
55 lines (47 loc) · 1.1 KB
/
build.gradle.kts
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
plugins {
id("com.android.application")
kotlin("android")
}
android {
compileSdk = Config.compileSdk
defaultConfig {
applicationId = "hu.ma.charts.sample"
minSdk = Config.minSdk
targetSdk = Config.targetSdk
versionCode = 1
versionName = "1.0"
}
buildFeatures {
compose = true
}
compileOptions {
sourceCompatibility = JavaVersion.VERSION_1_8
targetCompatibility = JavaVersion.VERSION_1_8
}
kotlinOptions {
jvmTarget = "1.8"
}
composeOptions {
kotlinCompilerExtensionVersion = Dependencies.Compose.version
}
}
dependencies {
implementation(project(":charts"))
arrayOf(
AndroidX.activity.ktx,
Google.android.material,
Dependencies.Compose.runtime,
Dependencies.Compose.activity,
Dependencies.Compose.ui,
Dependencies.Compose.foundation,
Dependencies.Compose.layout,
Dependencies.Compose.material,
Dependencies.Compose.iconsExtended,
Dependencies.Compose.animation,
Dependencies.Compose.util,
Dependencies.Compose.tooling,
Dependencies.Compose.Navigation.core
).forEach {
implementation(it)
}
}