forked from fossasia/phimpme-android
-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathbuild.gradle
executable file
·47 lines (39 loc) · 1.12 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 {
ext.realm_version = '3.3.1'
repositories {
jcenter()
maven { url 'https://jitpack.io' }
maven {
url 'https://maven.google.com/'
name 'Google'
}
}
dependencies {
classpath 'com.android.tools.build:gradle:2.3.3'
classpath 'com.dicedmelon.gradle:jacoco-android:0.1.1'
classpath "io.realm:realm-gradle-plugin:$realm_version"
}
}
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 {
supportLibraryVersion = '26.1.0'
butterknifeVersion = '8.6.0'
junitVersion = "4.12"
twitterVersion = "3.0.0"
stethoVersion = "1.5.0"
showcaseVersion = "5.4.3"
nextCloudVersion = "1.0.21"
}