blob: 510d8d61842ca5f7fe069bab21c41974ae946d51 (
plain)
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
|
plugins {
alias(libs.plugins.android.library) // replaced below via application plugin inline
}
// Android application wrapper for the OrgFlow domain library (submission scope: debug APK).
// NOTE: com.android.application declared inline because version catalog alias targets library.
apply(plugin = "com.android.application")
group = "net.kukuri"
version = "0.1.0"
android {
namespace = "net.kukuri.app"
compileSdk = 35
defaultConfig {
applicationId = "net.kukuri.app"
minSdk = 24
targetSdk = 35
versionCode = 1
versionName = "0.1.0"
}
compileOptions {
sourceCompatibility = JavaVersion.VERSION_17
targetCompatibility = JavaVersion.VERSION_17
}
lint {
checkReleaseBuilds = false
abortOnError = false
}
}
dependencies {
implementation(project(":modules:orgflow-domain"))
}
|