forked from tumblr/Backboard
-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathbuild.gradle
44 lines (39 loc) · 1.07 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
// 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.2.3'
classpath 'com.jfrog.bintray.gradle:gradle-bintray-plugin:1.2'
classpath 'com.github.dcendents:android-maven-plugin:1.2'
// NOTE - this is referencing a local variable that you must set in your gradle.properties
// in the top level folder.
//
// Example:
//
// project.ext {
// localBuildTools = com.android.tools.build:gradle:0.14.1
// }
//
if (project.hasProperty('localBuildTools')) {
classpath project.ext.localBuildTools
} else {
// Fallback to newest build tools if property not set
classpath 'com.android.tools.build:gradle:1.0.0'
}
}
}
allprojects {
repositories {
jcenter()
}
}
ext {
buildToolsVersion = "23.0.1"
compileSdkVersion = 22
minSdkVersion = 14
targetSdkVersion = 23
supportAnnotation = "com.android.support:support-annotations:23.0.1"
facebookRebound = "com.facebook.rebound:rebound:0.3.8"
}