forked from Efreak/NewsCatchr-OpenSource
-
Notifications
You must be signed in to change notification settings - Fork 0
/
build.gradle
37 lines (35 loc) · 959 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
33
34
35
36
37
buildscript {
ext.APP_ID = "jlelse.readit"
ext.VERSION_NAME = "6.0.9"
ext.VERSION_CODE = 62
ext.TARGET_SDK = 27
ext.MIN_SDK = 17
ext.BUILD_TOOLS = "27.0.3"
ext.SUPPORT_LIBS = "27.1.0"
ext.PLAY_SERVICES = "11.6.2"
ext.KOTLIN = "1.2.30"
ext.ANKO = "0.10.4"
repositories {
jcenter()
mavenCentral()
google()
}
dependencies {
classpath 'com.android.tools.build:gradle:3.0.1'
classpath "org.jetbrains.kotlin:kotlin-gradle-plugin:$KOTLIN"
classpath 'com.github.dcendents:android-maven-gradle-plugin:2.0'
}
}
plugins {
id 'com.github.ben-manes.versions' version '0.17.0'
}
allprojects {
repositories {
jcenter()
mavenCentral()
google()
maven { url "https://jitpack.io" }
maven { url "https://oss.sonatype.org/content/repositories/snapshots" }
maven { url 'https://dl.bintray.com/jetbrains/anko' }
}
}