-
Notifications
You must be signed in to change notification settings - Fork 0
/
build.gradle
95 lines (90 loc) · 3.45 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
61
62
63
64
65
66
67
68
69
70
71
72
73
74
75
76
77
78
79
80
81
82
83
84
85
86
87
88
89
90
91
92
93
94
95
// 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:2.3.3'
classpath 'com.google.gms:google-services:3.0.0'
classpath 'com.neenbedankt.gradle.plugins:android-apt:1.4'
// NOTE: Do not place your application dependencies here; they belong
// in the individual module build.gradle files
}
}
allprojects {
repositories {
jcenter()
}
}
task clean(type: Delete) {
delete rootProject.buildDir
}
//ext {
// minSdkVersion = 9
// compileSdkVersion = 25
// buildToolsVersion = '25.0.2'
// minSdkVersion = 16
// targetSdkVersion = 24
// sourceCompatibility = JavaVersion.VERSION_1_7
// androidSupport = '25.1.0'
// okhttp = '3.3.1'
// parceler = '1.1.5'
//
// final BUILD_VERSION = '25.1.0'
//
// // Android dependencies
// supportV4 = "com.android.support:support-v4:$BUILD_VERSION"
// supportV7 = "com.android.support:appcompat-v7:$BUILD_VERSION"
// supportAnnotations = "com.android.support:support-annotations:$BUILD_VERSION"
// supportDesign = "com.android.support:design:$BUILD_VERSION"
// supportRecycler = "com.android.support:recyclerview-v7:$BUILD_VERSION"
//
// final DAGGER_VERSION = '2.5'
// final RXJAVA_VERSION = '1.1.3'
// final RXANDROID_VERSION = '1.1.0'
// final RXBINDING_VERSION = '0.2.0'
// final GUAVA_VERSION = '18.0'
// BUTTERKNIFE_VERSION = '8.1.0'
//
// dagger = "com.google.dagger:dagger:${DAGGER_VERSION}"
// daggerCompiler = "com.google.dagger:dagger-compiler:${DAGGER_VERSION}"
// rxjava = "io.reactivex:rxjava:${RXJAVA_VERSION}"
// rxandroid = "io.reactivex:rxandroid:${RXANDROID_VERSION}"
// javax = "org.glassfish:javax.annotation:10.0-b28"
// guava = "com.google.guava:guava:${GUAVA_VERSION}"
// rxbinding = "com.jakewharton.rxbinding:rxbinding:${RXBINDING_VERSION}"
// butterKnife = "com.jakewharton:butterknife:${BUTTERKNIFE_VERSION}"
//
// // Data dependencies
// final SQLBRITE_VERSION = '0.6.3'
// final PICASSO_VERSION = '2.5.2'
// final GLIDE_VERSION = '3.7.0'
// final RETROFIT_VERSION = '2.1.0'
// FIREBASE_VERSION = '10.0.1'
//
// sqlbrite = "com.squareup.sqlbrite:sqlbrite:${SQLBRITE_VERSION}"
// picasso = "com.squareup.picasso:picasso:${PICASSO_VERSION}"
// retrofit = "com.squareup.retrofit2:retrofit:${RETROFIT_VERSION}"
// adapterrx = "com.squareup.retrofit2:adapter-rxjava:${RETROFIT_VERSION}"
// gson = "com.squareup.retrofit2:converter-gson:${RETROFIT_VERSION}"
//
// // Common Test dependencies
// final MOCKITO_VERSION = '1.10.19'
// final TIMBER_VERSION = '4.1.2'
// final JUNIT_VERSION = '4.12'
//
// mockito = "org.mockito:mockito-core:${MOCKITO_VERSION}"
// timber = "com.jakewharton.timber:timber:${TIMBER_VERSION}"
// junit = "junit:junit:${JUNIT_VERSION}"
//
// // Android Test dependencies
// final ESPRESSO_VERSION = '2.2.1'
// final RUNNER_VERSION = '0.4.1'
//
// espresso = "com.android.support.test.espresso:espresso-core:${ESPRESSO_VERSION}"
// espressoContrib = "com.android.support.test.espresso:espresso-contrib:${ESPRESSO_VERSION}"
// espressoidle = "com.android.support.test.espresso:espresso-idling-resource:${ESPRESSO_VERSION}"
// testRunner = "com.android.support.test:runner:$RUNNER_VERSION"
// testRule = "com.android.support.test:rules:$RUNNER_VERSION"
//
//}