-
Notifications
You must be signed in to change notification settings - Fork 925
/
build.gradle
56 lines (48 loc) · 1.35 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
// Top-level build file where you can add configuration options common to all sub-projects/modules.
buildscript {
ext.realm_version = '10.10.1'
repositories {
jcenter()
maven { url 'https://jitpack.io' }
maven {
url 'https://maven.google.com/'
name 'Google'
}
maven {
url "https://plugins.gradle.org/m2/"
}
google()
}
dependencies {
classpath 'com.android.tools.build:gradle:7.1.2'
classpath 'com.dicedmelon.gradle:jacoco-android:0.1.5'
classpath "io.realm:realm-gradle-plugin:$realm_version"
classpath "gradle.plugin.com.github.b3er.local.properties:local-properties-plugin:1.1"
}
}
allprojects {
repositories {
jcenter()
mavenCentral()
maven {
url 'https://maven.google.com/'
name 'Google'
}
}
ext {
KEYSTORE_FILE = rootProject.file('scripts/key.jks')
TRAVIS_BUILD = System.getenv("TRAVIS") == "true" && KEYSTORE_FILE.exists()
}
}
ext {
supportLibraryVersion = '1.4.1'
butterknifeVersion = '10.2.3'
junitVersion = "4.13.2"
twitterVersion = "3.3.0"
stethoVersion = "1.5.0"
showcaseVersion = "5.4.3"
nextCloudVersion = "2.9.1"
lifecycleVersion = "2.2.0"
glideVersion = "4.13.1"
retrofitVersion = "2.9.0"
}