aboutsummaryrefslogtreecommitdiffstats
path: root/AndroidAsyncSample/build.gradle
blob: 1f868433a6055a609e1dc2996af74310af751ffb (plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
apply plugin: 'com.android.application'

dependencies {
    compile project(':AndroidAsync:AndroidAsync')
}

android {
    sourceSets {
        main {
            manifest.srcFile 'AndroidManifest.xml'
            res.srcDirs = ['res/']
            java.srcDirs = ['src/']
        }
    }

    defaultConfig {
        targetSdkVersion 22
        minSdkVersion 9
    }

    compileSdkVersion 22
    buildToolsVersion "22.0.0"
}