Project

General

Profile

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

phasedsolver / build.gradle @ 9ee93595

1
plugins {
2
    id 'com.android.application'
3
}
4

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

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

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

    
29
dependencies {
30
    api project(':distorted-objectlib')
31
    implementation project(':distorted-os-android')
32
}
33

    
(2-2/3)