forked from qiujuer/UPMiss
-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathbuild.gradle
More file actions
31 lines (29 loc) · 689 Bytes
/
build.gradle
File metadata and controls
31 lines (29 loc) · 689 Bytes
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
buildscript {
repositories {
jcenter()
google()
}
dependencies {
classpath 'com.neenbedankt.gradle.plugins:android-apt:1.8'
classpath 'com.android.tools.build:gradle:3.0.1'
}
}
allprojects {
repositories {
jcenter()
maven { url "https://jitpack.io" }
google()
maven { url "https://dl.bintray.com/thelasterstar/maven/" }
}
}
// Define versions in a single place
ext {
// App dependencies
supportLibraryVersion = '27.0.2'
junitVersion = '4.12'
dbflowVersion = '4.0.4'
geniusVersion = '2.0.1'
gsonVersion = '2.8.0'
volleyVersion = '1.0.19'
calligraphyVersion = '2.2.0'
}