forked from gdg-berlin-android/ZePatch
-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathbuild.gradle.kts
More file actions
50 lines (40 loc) · 955 Bytes
/
Copy pathbuild.gradle.kts
File metadata and controls
50 lines (40 loc) · 955 Bytes
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
plugins {
alias(libs.plugins.android.library)
alias(libs.plugins.kotlin.android)
alias(libs.plugins.python)
}
android {
namespace = "de.berlindroid.zepatch.converter"
compileSdk = 36
defaultConfig {
minSdk = 25
ndk {
abiFilters += listOf("arm64-v8a", "x86_64")
}
}
compileOptions {
sourceCompatibility = JavaVersion.VERSION_21
targetCompatibility = JavaVersion.VERSION_21
}
}
kotlin {
jvmToolchain(21)
compilerOptions {
jvmTarget = org.jetbrains.kotlin.gradle.dsl.JvmTarget.JVM_21
}
}
chaquopy {
defaultConfig {
buildPython(System.getenv("ZEPATCH_PYTHON_PATH"))
pip {
install("pystitch==1.0.0")
}
version = "3.13"
}
}
dependencies {
implementation(libs.androidx.core.ktx)
implementation(libs.androidx.appcompat)
implementation(libs.material)
implementation(libs.jts)
}