forked from fossasia/phimpme-android
-
Notifications
You must be signed in to change notification settings - Fork 0
/
build.gradle
executable file
·44 lines (36 loc) · 1.17 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
// 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.fabric.io/public' }
}
dependencies {
classpath 'com.android.tools.build:gradle:2.3.3'
classpath 'com.google.gms:google-services:3.0.0'
classpath 'com.dicedmelon.gradle:jacoco-android:0.1.1'
classpath "io.realm:realm-gradle-plugin:$realm_version"
classpath 'io.fabric.tools:gradle:1.+'
classpath 'com.google.firebase:firebase-plugins:1.1.0'
}
}
allprojects {
repositories {
jcenter()
mavenCentral()
maven { url "http://repo1.maven.org/maven2" }
maven { url "http://dl.bintray.com/dasar/maven" }
maven { url 'https://github.com/uPhyca/stetho-realm/raw/master/maven-repo' }
}
}
ext {
supportLibraryVersion = '25.3.1'
butterknifeVersion = '8.6.0'
junitVersion = "4.12"
twitterVersion = "3.0.0"
stethoVersion = "1.5.0"
showcaseVersion = "5.4.3"
nextCloudVersion = "1.0.21"
gmsVersion = "11.0.2"
}