forked from syncthing/syncthing-lite
-
Notifications
You must be signed in to change notification settings - Fork 0
/
build.gradle
32 lines (30 loc) · 941 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
// Top-level build file where you can add configuration options common to all sub-projects/modules.
buildscript {
ext.kotlin_version = '1.3.0'
ext.support_version = '27.1.1'
ext.build_tools_version = '3.2.1'
ext.anko_version = '0.10.8'
ext.protobuf_lite_version = '3.0.1'
repositories {
mavenLocal()
jcenter()
maven { url 'https://jitpack.io' }
google()
}
dependencies {
classpath "com.android.tools.build:gradle:$build_tools_version"
classpath "org.jetbrains.kotlin:kotlin-gradle-plugin:$kotlin_version"
classpath 'com.github.ben-manes:gradle-versions-plugin:0.17.0'
classpath 'com.google.protobuf:protobuf-gradle-plugin:0.8.6'
classpath 'com.github.triplet.gradle:play-publisher:1.2.0'
}
}
allprojects {
repositories {
google()
jcenter()
maven {
url "https://jitpack.io"
}
}
}