-
-
Notifications
You must be signed in to change notification settings - Fork 38
Expand file tree
/
Copy pathbuild.gradle.kts
More file actions
46 lines (37 loc) · 1.04 KB
/
build.gradle.kts
File metadata and controls
46 lines (37 loc) · 1.04 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
45
46
plugins {
id("com.android.library")
id("org.jetbrains.kotlin.android")
}
group = "com.flutterskill"
version = "0.9.36"
android {
namespace = "com.flutterskill"
compileSdk = 34
defaultConfig {
minSdk = 24
testInstrumentationRunner = "androidx.test.runner.AndroidJUnitRunner"
consumerProguardFiles("consumer-rules.pro")
}
buildTypes {
release {
isMinifyEnabled = false
proguardFiles(
getDefaultProguardFile("proguard-android-optimize.txt"),
"proguard-rules.pro"
)
}
}
compileOptions {
sourceCompatibility = JavaVersion.VERSION_1_8
targetCompatibility = JavaVersion.VERSION_1_8
}
kotlinOptions {
jvmTarget = "1.8"
}
}
dependencies {
// Android core — typically already present in host apps
implementation("androidx.core:core-ktx:1.12.0")
// Kotlin coroutines — for async server operations
implementation("org.jetbrains.kotlinx:kotlinx-coroutines-android:1.7.3")
}