forked from AmazMod/AmazMod
-
Notifications
You must be signed in to change notification settings - Fork 0
/
build.gradle
33 lines (31 loc) · 878 Bytes
/
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
buildscript {
repositories {
// jCenter repo:
jcenter()
// Gradle plugin repo:
maven { url 'https://plugins.gradle.org/m2/' }
maven { url 'https://maven.fabric.io/public' }
}
dependencies {
// Android Gradle plugins:
classpath 'com.android.tools.build:gradle:2.2.3'
// DexPatcher Gradle plugins:
classpath 'com.github.lanchon.dexpatcher:dexpatcher-gradle:1.0.0'
classpath 'com.google.gms:google-services:3.2.0'
classpath 'io.fabric.tools:gradle:1.25.1'
}
}
buildscript {
repositories {
// This is the local repo I use for plugin development, you should remove it:
flatDir dirs: '../../dexpatcher-gradle/build/libs'
}
}
allprojects {
repositories {
jcenter()
maven {
url 'https://maven.google.com/'
}
}
}