Project

General

Profile

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

library / build.gradle @ 21ddac9c

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

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

    
12
    defaultConfig {
13
        minSdkVersion = 21
14
        targetSdk = 35
15
    }
16

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