Project

General

Profile

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

distorted-flags / build.gradle @ 83b4c672

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

    
3
android {
4
    compileSdk 36
5

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

    
11
    buildTypes {
12
        release {
13
            minifyEnabled false
14
            proguardFiles getDefaultProguardFile('proguard-android-optimize.txt'), 'proguard-rules.pro'
15
        }
16
    }
17
    namespace 'org.distorted.flags'
18
    compileOptions {
19
        sourceCompatibility JavaVersion.VERSION_11
20
        targetCompatibility JavaVersion.VERSION_11
21
    }
22
}
23

    
    (1-1/1)