Project

General

Profile

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

examples / build.gradle @ 18ce7d29

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

    
3
android {
4
    compileSdk 34
5

    
6
    defaultConfig {
7
        applicationId "org.distorted.examples"
8
        minSdkVersion 21
9
        targetSdkVersion 34
10
        versionCode 1
11
        versionName "1.0"
12
    }
13

    
14
    buildTypes {
15
        release {
16
            minifyEnabled false
17
            proguardFiles getDefaultProguardFile('proguard-android.txt'), 'proguard-rules.txt'
18
        }
19
    }
20
    namespace 'org.distorted.examples'
21
    compileOptions {
22
        sourceCompatibility JavaVersion.VERSION_11
23
        targetCompatibility JavaVersion.VERSION_11
24
    }
25
}
26

    
27
dependencies {
28
    api project(':distorted-library')
29
    implementation 'androidx.legacy:legacy-support-v4:1.0.0'
30
    implementation 'androidx.legacy:legacy-support-v13:1.0.0'
31
    implementation 'com.google.android.material:material:1.12.0'
32
    implementation project(path: ':distorted-objectlib')
33
}
(2-2/2)