Project

General

Profile

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

os-android / build.gradle @ master

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

    
14
    buildTypes {
15
        release {
16
            minifyEnabled false
17
            proguardFiles getDefaultProguardFile('proguard-android-optimize.txt'), 'proguard-rules.pro'
18
        }
19
    }
20
}
21

    
22
dependencies {
23
    api project(path: ':distorted-objectlib')
24
}
25

    
26

    
(2-2/2)