-
Notifications
You must be signed in to change notification settings - Fork 1
/
Copy pathbuild.gradle
69 lines (60 loc) · 1.67 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
// Top-level build file where you can add configuration options common to all sub-projects/modules.
buildscript {
repositories {
google()
jcenter()
maven {
url 'https://maven.fabric.io/public'
}
}
dependencies {
classpath 'com.android.tools.build:gradle:3.3.2'
classpath 'io.fabric.tools:gradle:1.29.0'
classpath 'com.google.gms:google-services:4.2.0'
// NOTE: Do not place your application dependencies here; they belong
// in the individual module build.gradle files
}
}
allprojects {
repositories {
google()
jcenter()
maven {
url 'https://maven.google.com/'
}
}
}
ext {
// app version
version_Code = 1
version_Name = "1.0"
// sdk
compile_sdk_version = 28
min_sdk_version = 15
target_sdk_version = 28
// dependencies versions
support_library_version = '28.0.0'
constraint_layout_version = '1.1.3'
lifecycle_version = '1.1.1'
room_version = '1.1.1'
paging_version = '1.0.1'
dagger2_version = '2.16'
butterknife_version = '8.8.1'
picasso_version = '2.71828'
retrofit_version = '2.4.0'
jsoup_version = '1.11.3'
okhttp3_logging_interceptor = '3.10.0'
play_services_maps_version = '16.1.0'
play_services_location_version = '16.0.0'
timber_version = '4.7.1'
crashlytics_version = '2.10.1'
firebase_core_version = '16.0.9'
junit_version = '4.12'
test_version = '1.0.2'
espresso_core_version = '3.0.2'
hamcrest_library_version = '1.3'
robolectric_version = '4.0-alpha-3'
}
task clean(type: Delete) {
delete rootProject.buildDir
}