1
0
mirror of https://github.com/tateisu/SubwayTooter synced 2025-02-07 06:04:23 +01:00

42 lines
1.2 KiB
Groovy
Raw Permalink 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
2019-08-31 23:33:13 +09:00
ext.target_sdk_version = 29
ext.appcompat_version='1.1.0'
ext.kotlin_version = '1.3.50'
2019-09-13 00:13:00 +09:00
ext.kotlinx_coroutines_version = '1.3.1'
2018-12-01 08:02:18 +09:00
ext.anko_version='0.10.8'
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:3.5.0'
classpath 'com.google.gms:google-services:4.2.0'
2019-09-13 00:13:00 +09:00
// com.google.gms:google-services:4.3.0 および 4.3.1 は警告を出す。
// API 'variant.getMergeResources()' is obsolete and has been replaced with 'variant.getMergeResourcesProvider()'.
2018-05-06 17:09:18 +09:00
classpath "org.jetbrains.kotlin:kotlin-gradle-plugin:$kotlin_version"
// kotlin 1.3.0 を入れるとIDEがindex作成でエラーを繰り返し出すようになるので様子見する
2019-10-07 05:46:56 +09:00
classpath 'de.mobilej.unmock:UnMockPlugin:0.7.3'
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
}