forked from fossasia/phimpme-android
-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathbuild.gradle
executable file
·59 lines (51 loc) · 1.55 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
// Top-level build file where you can add configuration options common to all sub-projects/modules.
buildscript {
ext.realm_version = '5.15.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:3.5.2'
classpath 'com.dicedmelon.gradle:jacoco-android:0.1.4'
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://repo1.maven.org/maven2" }
maven { url "https://dl.bintray.com/dasar/maven" }
maven { url 'https://github.com/uPhyca/stetho-realm/raw/master/maven-repo' }
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.1.0'
butterknifeVersion = '10.2.0'
junitVersion = "4.12"
twitterVersion = "3.0.0"
stethoVersion = "1.5.0"
showcaseVersion = "5.4.3"
nextCloudVersion = "1.5.0"
lifecycleVersion = "2.1.0"
glideVersion = "4.10.0"
retrofitVersion = "2.6.2"
}