-
Notifications
You must be signed in to change notification settings - Fork 29
/
build.gradle
53 lines (40 loc) · 1.28 KB
/
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
32
33
34
35
36
37
38
39
40
41
42
43
44
45
46
47
48
49
50
51
52
53
// 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:1.1.0'
// NOTE: Do not place your application dependencies here; they belong
// in the individual module build.gradle files
classpath 'com.neenbedankt.gradle.plugins:android-apt:1.4+'
classpath 'com.ms-square:saucelabs-gradle-plugin:1.0.0'
}
}
allprojects {
repositories {
jcenter()
}
}
// http://www.gradle.org/docs/current/dsl/org.gradle.api.plugins.ExtraPropertiesExtension.html
project.ext {
ANDROID_BUILD_SDK_VERSION = 22
ANDROID_BUILD_TOOLS_VERSION = "22.0.1"
ANDROID_BUILD_MIN_SDK_VERSION = 14
ANDROID_BUILD_TARGET_SDK_VERSION = 22
// Google Stuffs
supportPackageVersion = "22.0.0"
// APT plugin and Android Annotations
daggerVersion = "1.2.1"
androidAnnotationsVersion = "3.2"
// EventBus
eventBusVersion = "2.4.0"
// Timber
timberVersion = "2.5.1"
androidUtilVersion = "0.1.1"
// http://tools.android.com/tech-docs/new-build-system/tips
preDexLibs = !project.hasProperty('disablePreDex')
}
task wrapper(type: Wrapper) {
gradleVersion = '2.21'
}