Project

General

Profile

Download (857 Bytes) Statistics
| Branch: | Revision:

phasedsolver / build.gradle @ 204000d3

1
apply plugin: 'com.android.application'
2
apply plugin: 'kotlin-android'
3

    
4
android {
5
    namespace 'org.distorted.phasedsolver'
6
    compileSdk 35
7

    
8
    defaultConfig {
9
        applicationId "org.distorted.phasedsolver"
10
        minSdk 23
11
        targetSdk 35
12
        versionCode 1
13
        versionName "1.0"
14
    }
15

    
16
    buildTypes {
17
        release {
18
            minifyEnabled false
19
            proguardFiles getDefaultProguardFile('proguard-android-optimize.txt'), 'proguard-rules.pro'
20
        }
21
    }
22
    compileOptions {
23
        sourceCompatibility JavaVersion.VERSION_11
24
        targetCompatibility JavaVersion.VERSION_11
25
    }
26
    kotlinOptions {
27
        jvmTarget = '11'
28
    }
29
}
30

    
31
dependencies {
32
    api project(':distorted-objectlib')
33
    implementation project(':distorted-os-android')
34
    implementation libs.preference
35
    implementation libs.core.ktx
36
}
37

    
(2-2/3)