Project

General

Profile

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

examples / build.gradle @ 5b518f0a

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

    
3
android {
4
    compileSdkVersion 23
5

    
6
    defaultConfig {
7
        applicationId "org.distorted.examples"
8
        minSdkVersion 18
9
        targetSdkVersion 23
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
    compile "com.android.support:support-v4:23.4.0"
23
}
(2-2/2)