aboutsummaryrefslogtreecommitdiffstats
path: root/libraries/Android-AppMsg/library/build.gradle
blob: f77f1a098c08c2527c3913dda0f0da6b490f71f4 (plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
apply plugin: 'android-library'

android {
    compileSdkVersion 19
    buildToolsVersion '19.0.3'

    defaultConfig {
        minSdkVersion 4
    }
    sourceSets {
        main {
            manifest.srcFile 'AndroidManifest.xml'
            java.srcDirs = ['src']
            res.srcDirs = ['res']
        }
    }
}

if (project.hasProperty('nexusUsername')) {
    // Used to push in maven
    apply from: '../maven_push.gradle'
}