-
Notifications
You must be signed in to change notification settings - Fork 1.1k
/
build.gradle
31 lines (25 loc) · 906 Bytes
/
build.gradle
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
println "-------------------------------------------------"
println "Build ResideMenu with:\n\tbuildToolsVersion = " + System.properties['buildToolsVersion']
println "\tandroidGradlePluginVersion = " + System.properties['androidGradlePluginVersion']
println "\tfile.encoding = " + System.properties['file.encoding']
println "\tCharset.defaultCharset() = " + java.nio.charset.Charset.defaultCharset().toString()
println "-------------------------------------------------\n"
ext {
compileSdkVersion = 19
buildToolsVersion = System.properties['buildToolsVersion']
minSdkVersion = 9
targetSdkVersion = 14
}
buildscript {
repositories {
mavenCentral()
}
dependencies {
classpath 'com.android.tools.build:gradle:' + System.properties['androidGradlePluginVersion']
}
}
allprojects {
tasks.withType(JavaCompile) {
options.encoding = "UTF-8"
}
}