-
Notifications
You must be signed in to change notification settings - Fork 5
/
build.gradle
39 lines (32 loc) · 1.21 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
// Top-level build file where you can add configuration options common to all sub-projects/modules.
apply from: 'dependencies.gradle'
buildscript {
// Gradle will not find vars defined in an external file when referring to them
// in the buildscript block, unless you link it from the buildscript block, too.
apply from: 'dependencies.gradle'
repositories {
jcenter()
}
dependencies {
classpath gradlePlugins.android
// Compile-time annotation processing.
classpath gradlePlugins.apt
// Backport of some Java 8 language features such as Lambdas and method references.
classpath gradlePlugins.retrolambda
// Needed for Lint + Retrolambda.
classpath gradlePlugins.lombok
classpath 'com.google.gms:google-services:3.1.2'
classpath 'com.noveogroup.android:check:1.2.3'
classpath 'me.tatarka:gradle-retrolambda:3.2.5'
}
// Part of workaround for Lint + Retrolambda.
configurations.classpath.exclude group: 'com.android.tools.external.lombok'
}
allprojects {
repositories {
jcenter()
maven {
url 'https://github.com/suckgamony/RapidDecoder/raw/master/repository'
}
}
}