-
Notifications
You must be signed in to change notification settings - Fork 33
/
build.gradle
32 lines (29 loc) · 971 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
buildscript {
ext.kotlin_version = '1.3.71'
ext.android_gradle_plugin_version = '4.0.0-beta04'
repositories {
mavenLocal()
jcenter()
google()
maven { url "https://kotlin.bintray.com/kotlinx" }
gradlePluginPortal()
maven { url 'https://oss.sonatype.org/content/repositories/snapshots/' }
maven { url "https://dl.bintray.com/kotlin/kotlin-eap/" }
maven { url 'https://dl.bintray.com/kotlin/kotlin-dev' }
maven { url 'https://jitpack.io' }
}
dependencies {
classpath "com.android.tools.build:gradle:$android_gradle_plugin_version"
}
}
allprojects {
repositories {
jcenter()
google()
maven { url "https://kotlin.bintray.com/kotlinx" }
maven { url 'https://oss.sonatype.org/content/repositories/snapshots/' }
maven { url "https://dl.bintray.com/kotlin/kotlin-eap/" }
maven { url 'https://dl.bintray.com/kotlin/kotlin-dev' }
maven { url "https://kotlin.bintray.com/kotlin-js-wrappers" }
}
}