forked from UweTrottmann/SeriesGuide
-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathbuild.gradle
36 lines (29 loc) · 781 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
32
33
34
35
36
// Top-level build file where you can add configuration options common to all sub-projects/modules.
apply plugin: 'com.github.ben-manes.versions'
buildscript {
repositories {
jcenter()
mavenCentral()
}
dependencies {
classpath 'com.android.tools.build:gradle:1.2.3'
classpath 'com.github.ben-manes:gradle-versions-plugin:0.8'
}
}
allprojects {
repositories {
jcenter()
mavenCentral()
}
}
ext {
compileSdkVersion = 22
buildToolsVersion = '21.1.2'
// API level 15+ -> version 15xxx
versionCode = 15118
versionName = '23.1.1'
}
ext.libraries = [
supportv4: 'com.android.support:support-v4:22.1.1',
supportannotations: 'com.android.support:support-annotations:22.1.1'
]