-
Notifications
You must be signed in to change notification settings - Fork 114
Expand file tree
/
Copy pathbuild.gradle.kts
More file actions
44 lines (39 loc) · 1.3 KB
/
build.gradle.kts
File metadata and controls
44 lines (39 loc) · 1.3 KB
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
plugins {
id("org.jetbrains.compose")
id("com.android.application")
kotlin("android")
}
dependencies {
implementation(project(":reorderable"))
implementation("androidx.compose.runtime:runtime:1.3.3")
implementation("androidx.compose.material:material:1.3.1")
implementation("androidx.activity:activity-compose:1.6.1")
implementation("com.google.android.material:material:1.8.0")
implementation("androidx.lifecycle:lifecycle-viewmodel-ktx:2.5.1")
implementation("androidx.lifecycle:lifecycle-viewmodel-compose:2.5.1")
implementation("androidx.navigation:navigation-compose:2.5.3")
implementation("io.coil-kt:coil-compose:2.3.0")
}
android {
sourceSets {
map { it.java.srcDir("src/${it.name}/kotlin") }
}
val minSdkVersion: Int by rootProject.extra
val targetSdkVersion: Int by rootProject.extra
val compileSdkVersion: Int by rootProject.extra
compileSdk = compileSdkVersion
defaultConfig {
minSdk = minSdkVersion
targetSdk = targetSdkVersion
versionCode = 1
versionName = "1.0"
}
compileOptions {
sourceCompatibility = JavaVersion.VERSION_11
targetCompatibility = JavaVersion.VERSION_11
}
kotlinOptions {
jvmTarget = "1.8"
}
namespace = "org.burnoutcrew.android"
}