Project

General

Profile

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

distorted-objectlib / build.gradle @ master

1
apply plugin: 'com.android.library'
2

    
3
android {
4
    compileSdk 34
5

    
6
    defaultConfig {
7
        minSdk 21
8
        targetSdk 34
9
    }
10

    
11
    buildTypes {
12
        release {
13
            minifyEnabled false
14
            proguardFiles getDefaultProguardFile('proguard-android-optimize.txt'), 'proguard-rules.pro'
15
        }
16
    }
17

    
18
    buildFeatures {
19
        buildConfig = true
20
    }
21

    
22
    namespace 'org.distorted.objectlib'
23
}
24

    
25
dependencies {
26
    api project(':distorted-library')
27
}
28

    
    (1-1/1)