1
0
mirror of https://github.com/tateisu/SubwayTooter synced 2025-01-27 17:19:24 +01:00

41 lines
886 B
Groovy
Raw Normal View History

2017-04-21 01:23:59 +09:00
buildscript {
2018-09-12 14:55:15 +09:00
ext.min_sdk_version = 21
ext.target_sdk_version = 30
ext.appcompat_version='1.2.0'
2020-12-09 03:07:31 +09:00
ext.kotlin_version = '1.4.21'
ext.kotlinx_coroutines_version = '1.4.2'
2018-12-01 08:02:18 +09:00
ext.anko_version='0.10.8'
ext.junit_version='4.13.1'
2017-04-21 01:23:59 +09:00
repositories {
google()
2017-04-21 01:23:59 +09:00
jcenter()
2017-04-23 14:42:09 +09:00
mavenCentral()
2017-04-21 01:23:59 +09:00
}
2018-09-12 14:55:15 +09:00
2017-04-21 01:23:59 +09:00
dependencies {
classpath 'com.android.tools.build:gradle:4.1.1'
classpath 'com.google.gms:google-services:4.3.4'
2018-05-06 17:09:18 +09:00
classpath "org.jetbrains.kotlin:kotlin-gradle-plugin:$kotlin_version"
2019-10-07 05:46:56 +09:00
classpath 'de.mobilej.unmock:UnMockPlugin:0.7.6'
2017-04-21 01:23:59 +09:00
}
}
allprojects {
repositories {
google()
2017-04-21 01:23:59 +09:00
jcenter()
maven { url 'https://maven.google.com' }
maven { url 'https://jitpack.io' }
2017-04-21 01:23:59 +09:00
}
}
task clean(type: Delete) {
delete rootProject.buildDir
}