Project

General

Profile

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

distorted-flags / build.gradle @ 1b53b845

1 7252a86e Leszek Koltunski
apply plugin: 'com.android.library'
2 1b53b845 leszek
apply plugin: 'kotlin-android'
3 7252a86e Leszek Koltunski
4
android {
5 25ec01e8 LeszekKoltunski
    compileSdk 35
6 7252a86e Leszek Koltunski
7
    defaultConfig {
8
        minSdk 21
9 25ec01e8 LeszekKoltunski
        targetSdk 35
10 7252a86e Leszek Koltunski
    }
11
12
    buildTypes {
13
        release {
14
            minifyEnabled false
15
            proguardFiles getDefaultProguardFile('proguard-android-optimize.txt'), 'proguard-rules.pro'
16
        }
17
    }
18 8f27d0d5 Leszek Koltunski
    namespace 'org.distorted.flags'
19 6ea6ebb8 leszek
    compileOptions {
20
        sourceCompatibility JavaVersion.VERSION_11
21
        targetCompatibility JavaVersion.VERSION_11
22
    }
23 25ec01e8 LeszekKoltunski
    kotlinOptions {
24
        jvmTarget = '11'
25
    }
26
}
27
28
dependencies {
29
    implementation libs.core.ktx
30 7252a86e Leszek Koltunski
}