Project

General

Profile

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

phasedsolver / build.gradle @ a96b9267

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

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

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

    
16
        testInstrumentationRunner "androidx.test.runner.AndroidJUnitRunner"
17
    }
18

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

    
31
dependencies {
32
    api project(':distorted-objectlib')
33
    implementation project(':distorted-os-android')
34
    implementation ('androidx.preference:preference:1.2.1')
35
}
36

    
(2-2/3)