Project

General

Profile

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

distorted-flags / build.gradle @ 25ec01e8

1
plugins {
2
    alias(libs.plugins.kotlin.android)
3
}
4
apply plugin: 'com.android.library'
5

    
6
android {
7
    compileSdk 35
8

    
9
    defaultConfig {
10
        minSdk 21
11
        targetSdk 35
12
    }
13

    
14
    buildTypes {
15
        release {
16
            minifyEnabled false
17
            proguardFiles getDefaultProguardFile('proguard-android-optimize.txt'), 'proguard-rules.pro'
18
        }
19
    }
20
    namespace 'org.distorted.flags'
21
    compileOptions {
22
        sourceCompatibility JavaVersion.VERSION_11
23
        targetCompatibility JavaVersion.VERSION_11
24
    }
25
    kotlinOptions {
26
        jvmTarget = '11'
27
    }
28
}
29

    
30
dependencies {
31
    implementation libs.core.ktx
32
}
33

    
    (1-1/1)