Project

General

Profile

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

os-android / build.gradle @ ae12d325

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

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

    
9
    defaultConfig {
10
        minSdk 21
11
        targetSdk 34
12

    
13
        testInstrumentationRunner "androidx.test.runner.AndroidJUnitRunner"
14
        consumerProguardFiles "consumer-rules.pro"
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_1_8
25
        targetCompatibility JavaVersion.VERSION_1_8
26
    }
27
}
28

    
29
dependencies {
30
    api project(path: ':distorted-library-object')
31
}
32

    
33

    
(2-2/2)