Project

General

Profile

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

examples / build.gradle @ master

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
}
22

    
23
dependencies {
24
    api project(':distorted-library')
25
    implementation 'androidx.legacy:legacy-support-v4:1.0.0'
26
    implementation 'androidx.legacy:legacy-support-v13:1.0.0'
27
    implementation 'com.google.android.material:material:1.11.0'
28
    implementation project(path: ':distorted-objectlib')
29
}
(2-2/2)