blob: 86e4f4f5f81a47db0a780726ff45d7ace7e629ee (
plain)
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
|
buildscript {
apply from: "${rootDir}/gradle/dependencies.gradle"
repositories {
google()
jcenter()
}
dependencies {
classpath 'com.android.tools.build:gradle:3.1.4'
classpath dependenciesList.licensesPlugin
classpath dependenciesList.kotlinPlugin
}
}
allprojects {
repositories {
mavenCentral()
google()
jcenter()
// Snapshot repository
//maven { url "http://oss.sonatype.org/content/repositories/snapshots/" }
}
}
subprojects {
apply from: "${rootDir}/gradle/dependencies.gradle"
}
// Load build system information. If this file does not exist, run
// `make platform/android/gradle/configuration.gradle`
apply from: "${rootDir}/gradle/configuration.gradle"
|