-
-
Notifications
You must be signed in to change notification settings - Fork 4
/
Copy pathbuild.gradle
36 lines (30 loc) · 1.1 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
buildscript {
apply from: "${project.rootDir}/Android-Dependencies/dependencies.gradle"
repositories {
google()
// https://storage-download.googleapis.com/maven-central/index.html
maven { url 'https://maven-central-eu.storage-download.googleapis.com/repos/central/data/' }
maven { url 'https://plugins.gradle.org/m2/' }
maven { url 'https://maven.fabric.io/public' }
}
dependencies {
classpath plugin.gradleBuildToolsCanary
classpath plugin.kotlinGradle
classpath plugin.kotlinApt
classpath pluginLibrary.mavenGradle
classpath plugin.dexcountGradle
}
}
allprojects {
apply from: "${project.rootDir}/Android-Dependencies/utils.gradle"
repositories {
google()
// https://storage-download.googleapis.com/maven-central/index.html
maven { url 'https://maven-central-eu.storage-download.googleapis.com/repos/central/data/' }
maven { url 'https://plugins.gradle.org/m2/' }
maven { url 'https://jitpack.io' }
}
}
task clean(type: Delete) {
delete rootProject.buildDir
}