1
|
plugins {
|
2
|
id 'com.android.application'
|
3
|
alias(libs.plugins.kotlin.android)
|
4
|
}
|
5
|
|
6
|
android {
|
7
|
namespace 'org.distorted.phasedsolver'
|
8
|
compileSdk 35
|
9
|
|
10
|
defaultConfig {
|
11
|
applicationId "org.distorted.phasedsolver"
|
12
|
minSdk 23
|
13
|
targetSdk 35
|
14
|
versionCode 1
|
15
|
versionName "1.0"
|
16
|
}
|
17
|
|
18
|
buildTypes {
|
19
|
release {
|
20
|
minifyEnabled false
|
21
|
proguardFiles getDefaultProguardFile('proguard-android-optimize.txt'), 'proguard-rules.pro'
|
22
|
}
|
23
|
}
|
24
|
compileOptions {
|
25
|
sourceCompatibility JavaVersion.VERSION_11
|
26
|
targetCompatibility JavaVersion.VERSION_11
|
27
|
}
|
28
|
kotlinOptions {
|
29
|
jvmTarget = '11'
|
30
|
}
|
31
|
}
|
32
|
|
33
|
dependencies {
|
34
|
api project(':distorted-objectlib')
|
35
|
implementation project(':distorted-os-android')
|
36
|
implementation libs.preference
|
37
|
implementation libs.core.ktx
|
38
|
}
|
39
|
|