-
Notifications
You must be signed in to change notification settings - Fork 0
/
build.gradle.kts
38 lines (35 loc) · 1.01 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
plugins {
// From com.android.tools.build:gradle
id("com.android.application")
// From org.jetbrains.kotlin:kotlin-gradle-plugin
id("kotlin-android")
}
repositories {
google()
mavenCentral()
}
android {
compileSdkVersion(31)
defaultConfig {
applicationId = "com.github.manday.helm"
minSdkVersion(22)
targetSdkVersion(31)
versionCode = 1
versionName = "1.0"
}
buildFeatures {
compose = true
}
composeOptions {
kotlinCompilerExtensionVersion = "1.1.0"
}
}
dependencies {
implementation("androidx.compose.ui:ui:1.1.0")
implementation("androidx.activity:activity-compose:1.4.0")
implementation("androidx.compose.compiler:compiler:1.1.0")
implementation("androidx.compose.material:material:1.1.0")
implementation("androidx.compose.material:material-icons-core:1.1.0")
implementation("androidx.compose.runtime:runtime:1.1.0")
implementation("com.google.android.material:material:1.5.0")
}