-
Notifications
You must be signed in to change notification settings - Fork 1
/
Copy pathbuild.gradle
46 lines (38 loc) · 1.06 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
// Top-level build file where you can add configuration options common to all sub-projects/modules.
buildscript {
repositories {
jcenter()
maven { url 'https://dl.bintray.com/lifechurch/maven/' }
mavenLocal()
}
dependencies {
classpath 'com.android.tools.build:gradle:2.3.0'
classpath 'com.jfrog.bintray.gradle:gradle-bintray-plugin:1.7.1'
classpath 'com.github.dcendents:android-maven-gradle-plugin:1.5'
classpath "nuclei.gradle:nuclei-gradle:2.2.4"
}
}
allprojects {
repositories {
jcenter()
}
}
task clean(type: Delete) {
delete rootProject.buildDir
}
ext {
compileSdkVersion = 25
targetSdkVersion = 25
minSdkVersion = 15
buildToolsVersion = "25.0.1"
playServicesVersion = "9.4.0"
supportLibVersion = "25.3.1"
glideVersion = "3.7.0"
jsoupVersion = "1.8.3"
exoPlayerVersion = "r2.4.4"
okHttpVersion = "3.6.0"
// Android Test Support Libraries
espressoRunnerVersion = "0.5"
espressoRulesVersion = "0.5"
espressoVersion = "2.2.2"
}