-
Notifications
You must be signed in to change notification settings - Fork 2
Expand file tree
/
Copy pathbuild.gradle
More file actions
35 lines (32 loc) · 960 Bytes
/
build.gradle
File metadata and controls
35 lines (32 loc) · 960 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
32
33
34
35
// Top-level build file where you can add configuration options common to all sub-projects/modules.
buildscript {
repositories {
mavenCentral()
}
dependencies {
classpath 'com.android.tools.build:gradle:2.0.0'
// small Gradle plugin that helps out when using an annotation processor
// --> Android Annotations
// makes the build code "available" to android studio
// adds it to the source path
classpath "com.neenbedankt.gradle.plugins:android-apt:1.4"
}
}
ext {
supportLibraryVersion = "23.3.0"
volleyVersion = "1.0.16"
modelMapperVersion = "0.7.4"
androidAnnotationsVersion = "3.3.2"
springVersion = "1.0.1.RELEASE"
gsonVersion = "2.3.1"
junitVersion = "4.12"
espressoVersion = "2.0"
androidTestRunnerVersion = "0.2"
parcelerVersion = "0.2.16"
coordinatorVersion = "1.1.5"
}
allprojects {
repositories {
mavenCentral()
}
}