aboutsummaryrefslogtreecommitdiffstats
path: root/cgeo-contacts/build.gradle
blob: 3d99c2905be7f1c608ba7d5e2e721830fa47f170 (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
25
26
27
28
29
30
31
apply plugin: 'com.android.application'

android {
    compileSdkVersion 19
    buildToolsVersion "21.1"



    defaultConfig {
        minSdkVersion 9
        targetSdkVersion 19
        versionName "1.1"
        versionCode 2
    }

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

dependencies {
    compile 'org.apache.commons:commons-lang3:3.3.2'
    compile files('../main/compile-libs/org.eclipse.jdt.annotation_1.1.0.v20130513-1648.jar')
    // The depency to the ICalnder interface from the main project is missing
    // compile(:main) is not right
}