-
Notifications
You must be signed in to change notification settings - Fork 10
/
Copy pathbuild.gradle
32 lines (26 loc) · 943 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.2.51'
ext.support_version = '25.4.0'
ext.build_tools_version = '27.0.3'
repositories {
jcenter()
google()
maven { url "https://plugins.gradle.org/m2/" }
}
dependencies {
classpath "org.jetbrains.kotlin:kotlin-gradle-plugin:$kotlin_version"
// comment out the following to disable Android modules and work normally with Java modules
classpath 'com.android.tools.build:gradle:3.1.3'
classpath 'com.getkeepsafe.dexcount:dexcount-gradle-plugin:0.8.2'
classpath 'org.jetbrains.dokka:dokka-android-gradle-plugin:0.9.17'
classpath 'org.jetbrains.dokka:dokka-gradle-plugin:0.9.17'
classpath 'com.jfrog.bintray.gradle:gradle-bintray-plugin:1.8.1'
classpath 'com.github.dcendents:android-maven-gradle-plugin:2.1'
}
}
allprojects {
repositories {
jcenter()
google()
}
}