summaryrefslogtreecommitdiff
path: root/android/sdremote/build.gradle
blob: 5f915b4361130e622f78b351650d13662b2cb20f (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
32
33
34
// Top-level build file where you can add configuration options common to all sub-projects/modules.
buildscript {
    repositories {
        jcenter()
    }
    dependencies {
        classpath 'com.android.tools.build:gradle:2.1.0'
    }
}

// defaults for the two modules to have a single place to update
subprojects {
    afterEvaluate {project ->
        if (project.hasProperty("android")) {
            android {
                compileSdkVersion  23
                buildToolsVersion  '23.0.3'
                defaultConfig {
                    applicationId 'org.libreoffice.impressremote'
                    versionCode   17
                    versionName   '2.2.3'
                    // prevent having android studio create PNGs from the vectors
                    vectorDrawables.useSupportLibrary = true
                }
            }
        }
    }
}

allprojects {
    repositories {
        jcenter()
    }
}