1
0
mirror of https://github.com/tateisu/SubwayTooter synced 2024-12-23 23:54:51 +01:00
SubwayTooter-Android-App/build.gradle
tateisu 46ea96f591 - kotlin 1.2.30
- support library 27.1.0
- サムネイルをクロップしない設定を使った時の背景(白テーマ、黒テーマ)を半透明にした
2018-03-07 07:28:41 +09:00

31 lines
688 B
Groovy

buildscript {
ext.kotlin_version = '1.2.30'
ext.kotlin_coroutines_version = '0.21.2'
ext.anko_version='0.10.4'
repositories {
jcenter()
mavenCentral()
google()
}
dependencies {
classpath 'com.android.tools.build:gradle:3.0.1'
classpath 'com.google.gms:google-services:3.0.0'
classpath "org.jetbrains.kotlin:kotlin-gradle-plugin:$kotlin_version"
}
}
allprojects {
repositories {
jcenter()
maven { url 'https://maven.google.com' }
maven { url 'https://jitpack.io' }
google()
}
}
task clean(type: Delete) {
delete rootProject.buildDir
}