Project

General

Profile

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

examples / build.gradle @ d63d5b6b

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

    
3
android {
4
    compileSdkVersion 27
5

    
6
    defaultConfig {
7
        applicationId "org.distorted.examples"
8
        minSdkVersion 18
9
        targetSdkVersion 27
10
    }
11

    
12
    buildTypes {
13
        release {
14
            minifyEnabled false
15
            proguardFiles getDefaultProguardFile('proguard-android.txt'), 'proguard-rules.txt'
16
        }
17
    }
18
}
19

    
20
dependencies {
21
    compile project(':distorted-library')
22
    implementation 'com.android.support:support-v4:27.0.2'
23
}
(2-2/2)