Project

General

Profile

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

library / build.gradle @ f1c2d4b0

1 6a06a912 Leszek Koltunski
apply plugin: 'com.android.library'
2
3
android {
4 f1c2d4b0 Leszek Koltunski
    compileSdkVersion 29
5 6a06a912 Leszek Koltunski
6
    defaultConfig {
7 96f271e9 Leszek Koltunski
        minSdkVersion 21
8 f1c2d4b0 Leszek Koltunski
        targetSdkVersion 29
9 6a06a912 Leszek Koltunski
    }
10
11
    buildTypes {
12
        release {
13
            minifyEnabled false
14
            proguardFiles getDefaultProguardFile('proguard-android.txt'), 'proguard-rules.txt'
15
        }
16
    }
17
}