Project

General

Profile

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

distorted-flags / build.gradle @ 25ec01e8

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