Project

General

Profile

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

examples / build.gradle @ 5ac76be9

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

    
3
android {
4
    compileSdkVersion 23
5
    buildToolsVersion '25.0.0'
6

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

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

    
21
dependencies {
22
    compile project(':distorted-library')
23
    compile "com.android.support:support-v4:23.4.0"
24
}
(2-2/2)