-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathbuild.gradle.kts
More file actions
31 lines (27 loc) · 871 Bytes
/
build.gradle.kts
File metadata and controls
31 lines (27 loc) · 871 Bytes
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
allprojects {
repositories {
mavenLocal()
mavenCentral()
jcenter()
google()
}
}
buildscript {
val kotlin_version: String by project
val android_tools_version: String by project
repositories {
mavenLocal()
jcenter()
google()
maven(url = "https://dl.bintray.com/jetbrains/kotlin-native-dependencies")
maven(url = "https://maven.google.com")
maven(url = "https://plugins.gradle.org/m2/")
maven(url = "https://dl.bintray.com/kotlin/kotlin-eap")
maven(url = "https://kotlin.bintray.com/kotlinx")
}
dependencies {
classpath("org.jetbrains.kotlin:kotlin-gradle-plugin:$kotlin_version")
classpath("com.android.tools.build:gradle:$android_tools_version")
classpath("com.github.dcendents:android-maven-gradle-plugin:2.1")
}
}