Project

General

Profile

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

library / build.gradle @ 49355f25

1
apply plugin: 'com.android.library'
2
apply plugin: 'kotlin-android'
3

    
4
android {
5
    signingConfigs {
6
        release {
7
            storeFile file('/Users/leszek/Programs/Examples/threedcell.keystore')
8
            keyAlias = 'distorted'
9
        }
10
    }
11
    compileSdk 35
12

    
13
    defaultConfig {
14
        minSdkVersion 21
15
        targetSdk 35
16
    }
17

    
18
    buildTypes {
19
        release {
20
            minifyEnabled false
21
            proguardFiles getDefaultProguardFile('proguard-android.txt'), 'proguard-rules.txt'
22
            signingConfig signingConfigs.release
23
        }
24
        debug {
25
            signingConfig signingConfigs.debug
26
        }
27
    }
28
    namespace 'org.distorted.library'
29
    compileOptions {
30
        sourceCompatibility JavaVersion.VERSION_11
31
        targetCompatibility JavaVersion.VERSION_11
32
    }
33
    kotlinOptions {
34
        jvmTarget = '11'
35
    }
36
}
37

    
38
dependencies {
39
    implementation libs.core.ktx
40
}
(2-2/2)