forked from UweTrottmann/SeriesGuide
-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathbuild.gradle
60 lines (51 loc) · 2.19 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
54
55
56
57
58
59
60
// Top-level build file where you can add configuration options common to all sub-projects/modules.
buildscript {
ext.versions = [
'minSdk': 15,
'compileSdk': 26,
'targetSdk': 25,
'buildTools': '26.0.1',
'supportLibrary': '26.0.2',
'playServices': '11.2.0', // developers.google.com/android/guides/releases
'butterknife': '8.8.1', // github.com/JakeWharton/butterknife/blob/master/CHANGELOG.md
'crashlytics': '2.6.8', // docs.fabric.io/android/changelog.html
'dagger': '2.10', // github.com/google/dagger/releases
'gson': '2.8.1', // github.com/google/gson/blob/master/CHANGELOG.md
'okhttp': '3.8.1', // github.com/square/okhttp/blob/master/CHANGELOG.md
'timber': '4.5.1', // github.com/JakeWharton/timber/blob/master/CHANGELOG.md
'androidUtils': '2.3.1', // github.com/UweTrottmann/AndroidUtils/blob/master/RELEASE_NOTES.md
'thetvdb': '1.4.2', // github.com/UweTrottmann/thetvdb-java/blob/master/CHANGELOG.md
'tmdb': '1.7.0', // github.com/UweTrottmann/tmdb-java/blob/master/CHANGELOG.md
'trakt': '5.7.1', // github.com/UweTrottmann/trakt-java/blob/master/CHANGELOG.md
'assertjAndroid': '1.1.1',
'threetenBP': '1.3.3',
'threetenABP': '1.0.5', // github.com/JakeWharton/ThreeTenABP/blob/master/CHANGELOG.md
// API level 15+ -> version 15xxx
'code': 15271,
'name': '39-beta2',
]
repositories {
jcenter()
mavenCentral()
maven { url 'https://maven.fabric.io/public' }
}
dependencies {
classpath 'com.android.tools.build:gradle:2.3.2' // libraries, SeriesGuide
classpath 'com.google.cloud.tools:endpoints-framework-gradle-plugin:1.0.1' // SeriesGuide
classpath 'io.fabric.tools:gradle:1.24.1' // SeriesGuide
}
}
plugins {
id "com.github.ben-manes.versions" version "0.15.0"
id "io.codearte.nexus-staging" version "0.8.0" // api
}
subprojects {
repositories {
jcenter()
google()
mavenCentral()
}
}
task clean(type: Delete) {
delete rootProject.buildDir
}