1
0
mirror of https://github.com/tateisu/SubwayTooter synced 2025-02-08 08:09:02 +01:00

76 lines
2.3 KiB
Groovy
Raw Normal View History

2017-04-21 01:23:59 +09:00
buildscript {
ext.conscryptVersion = "2.5.2"
ext.androidxTestVersion = "1.5.0"
ext.ankoVersion = "0.10.8"
ext.appcompatVersion = "1.6.0"
ext.archVersion = "2.1.0"
ext.composeVersion = "1.0.5"
ext.conscryptVersion = "2.5.2"
ext.desugarLibVersion = "1.2.0"
ext.detektVersion = "1.22.0"
ext.glideVersion = "4.14.2"
ext.junitVersion = "4.13.2"
ext.kotlinJvmTarget = "1.8"
ext.koinVersion = "3.1.3"
ext.kotlinVersion = "1.8.0"
ext.kotlinxCoroutinesVersion = "1.6.4"
ext.lifecycleVersion = "2.5.1"
ext.okhttpVersion = "4.10.0"
ext.stBuildToolsVersion = "33.0.1"
ext.stCompileSdkVersion = 33
ext.stMinSdkVersion = 26
ext.stTargetSdkVersion = 33
ext.startupVersion = "1.1.1"
ext.workVersion = "2.7.1"
ext.coreKtxVersion = "1.9.0"
ext.testKtxVersion = "1.5.0"
ext.materialVersion = "1.8.0"
ext.androidxTestExtJunitVersion = "1.1.5"
ext.androidxTestEspressoCoreVersion = "3.5.1"
ext.androidxAnnotationVersion = "1.5.0"
ext.preferenceVersion = "1.2.0"
2017-04-21 01:23:59 +09:00
repositories {
google()
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 {
2023-01-27 01:15:34 +09:00
classpath 'com.android.tools.build:gradle:7.3.1'
// room のバージョンの影響で google-services を上げられない場合がある
2023-01-27 00:54:04 +09:00
classpath "com.google.gms:google-services:4.3.15"
2018-05-06 17:09:18 +09:00
//noinspection DifferentKotlinGradleVersion
classpath "org.jetbrains.kotlin:kotlin-gradle-plugin:$kotlinVersion"
classpath "org.jetbrains.kotlin:kotlin-serialization:$kotlinVersion"
2019-10-07 05:46:56 +09:00
classpath "com.github.bjoernq:unmockplugin:0.7.6"
classpath "io.gitlab.arturbosch.detekt:detekt-gradle-plugin:$detektVersion"
2017-04-21 01:23:59 +09:00
}
}
allprojects {
repositories {
google()
2023-01-15 14:04:37 +09:00
maven { url "https://maven.google.com" }
maven { url "https://jitpack.io" }
mavenCentral()
2023-01-15 14:04:37 +09:00
maven { url "https://dl.bintray.com/google/exoplayer/" }
maven { url "https://dl.bintray.com/google/flexbox-layout/" }
2017-04-21 01:23:59 +09:00
}
}
task clean(type: Delete) {
delete rootProject.buildDir
}
tasks.withType(JavaCompile) {
2023-01-15 14:04:37 +09:00
options.compilerArgs << "-Xlint:unchecked"
options.compilerArgs << "-Xlint:deprecation"
options.compilerArgs << "-Xlint:divzero"
}