-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathbuild.gradle
49 lines (47 loc) · 1.36 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
44
45
46
47
48
49
buildscript {
apply from : "library.gradle"
ext.kotlin_version = "1.4.31"
repositories {
google()
jcenter()
}
dependencies {
classpath 'com.android.tools.build:gradle:4.1.2'
classpath "org.jetbrains.kotlin:kotlin-gradle-plugin:1.5.31"
classpath 'com.google.gms:google-services:4.3.5'
classpath "org.jetbrains.kotlin:kotlin-allopen:$kotlin_version"
classpath "androidx.navigation:navigation-safe-args-gradle-plugin:2.3.4"
classpath "android.arch.navigation:navigation-safe-args-gradle-plugin:1.0.0"
classpath 'com.novoda:bintray-release:0.9.1'
}
}
allprojects {
repositories {
google()
maven {
url 'https://maven.fabric.io/public'
allowInsecureProtocol = true
}
maven {
url "https://jitpack.io"
allowInsecureProtocol = true
}
jcenter()
maven {
url 'https://dl.bintray.com/sysdata/maven'
allowInsecureProtocol = true
}
maven {
url 'http://repo.pageturner-reader.org'
allowInsecureProtocol = true
}
maven {
url "https://dl.bintray.com/metrixorg/maven"
allowInsecureProtocol = true
}
mavenCentral()
}
}
task clean(type: Delete) {
delete rootProject.buildDir
}