-
Notifications
You must be signed in to change notification settings - Fork 48
/
Copy pathbuild.gradle
64 lines (55 loc) · 1.52 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
// Top-level build file where you can add configuration options common to all sub-projects/modules.
buildscript {
repositories {
google()
jcenter()
mavenCentral()
maven {
url "https://plugins.gradle.org/m2/"
}
}
dependencies {
classpath 'com.android.tools.build:gradle:4.0.0'
// classpath 'com.neenbedankt.gradle.plugins:android-apt:1.8'
// classpath 'com.netflix.nebula:gradle-extra-configurations-plugin:3.0.3'
// classpath 'com.squareup.sqldelight:gradle-plugin:0.5.1'
// classpath 'me.tatarka:gradle-retrolambda:3.2.5'
// classpath 'org.aspectj:aspectjtools:1.8.9'
// classpath 'com.google.gms:google-services:3.0.0'
}
}
allprojects {
repositories {
google()
jcenter()
mavenCentral()
mavenLocal()
maven {
url "https://jitpack.io"
}
maven {
url "https://clojars.org/repo/"
}
maven {
url "http://dl.bintray.com/piasy/maven"
}
}
}
task clean(type: Delete) {
delete rootProject.buildDir
}
ext {
androidCompileSdkVersion = 29
androidBuildToolsVersion = '29.0.3'
minSdkVersion = 16
targetSdkVersion = 29
releaseVersionCode = 1
releaseVersionName = '1.0.0'
autoValueVersion = '1.3'
daggerVersion = '2.6.1'
butterKnifeVersion = '8.4.0'
frescoVersion = '0.14.1'
materialDialogVersion = '0.9.0.2'
autoBundleVersion = '3.1.1'
yaMvpVersion = '1.0.1'
}