-
Notifications
You must be signed in to change notification settings - Fork 25
/
build.gradle
56 lines (49 loc) · 2.1 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
// Top-level build file where you can add configuration options common to all sub-projects/modules.
buildscript {
ext {
// Versions
sdkCompile = 25
sdkTarget = 25
sdkMinimum = 19
sdkBuildTools = '25.0.1'
// Dependency versions
androidSupportVersion = '25.1.0'
androidTestVersion = '0.5'
loganSquareVersion = '1.3.6'
rxJavaVersion = '1.2.1'
// Qualified Deps
androidAppCompat = "com.android.support:appcompat-v7:${androidSupportVersion}"
androidGradlePlugin = "com.android.tools.build:gradle:2.2.2"
androidRecyclerView = "com.android.support:recyclerview-v7:${androidSupportVersion}"
androidSupportAnnotations = "com.android.support:support-annotations:${androidSupportVersion}"
androidTestEspressoCore = "com.android.support.test.espresso:espresso-core:2.2.2"
androidTestRunner = "com.android.support.test:runner:${androidTestVersion}"
androidTestRules = "com.android.support.test:rules:${androidTestVersion}"
aptDep = "com.neenbedankt.gradle.plugins:android-apt:1.8"
commonsIO = "commons-io:commons-io:2.4"
junit = "junit:junit:4.12"
loganSquare = "com.bluelinelabs:logansquare:${loganSquareVersion}"
loganSquareCompiler = "com.bluelinelabs:logansquare-compiler:${loganSquareVersion}"
mapDB = "org.mapdb:mapdb:2.0-beta12"
photoView = "com.commit451:PhotoView:1.2.4"
picasso = "com.squareup.picasso:picasso:2.5.2"
once = "com.jonathanfinerty.once:once:0.4.2"
rxAndroid = "io.reactivex:rxandroid:${rxJavaVersion}"
rxJava = "io.reactivex:rxjava:${rxJavaVersion}"
rxTuples = "com.github.pakoito:RxTuples:1.0.0"
tessTwo = "com.rmtheis:tess-two:6.0.4"
timber = "com.jakewharton.timber:timber:4.4.0"
versions = "com.ToxicBakery.android.version:versions:1.0.13"
}
repositories {
jcenter()
}
dependencies {
classpath androidGradlePlugin
classpath mapDB
classpath aptDep
}
}
task clean(type: Delete) {
delete rootProject.buildDir
}