2017-04-21 01:23:59 +09:00
|
|
|
buildscript {
|
2017-11-04 23:51:15 +09:00
|
|
|
|
2021-11-07 21:00:06 +09:00
|
|
|
ext.jvm_target = "1.8"
|
2021-11-06 11:11:28 +09:00
|
|
|
|
2022-08-11 16:51:49 +09:00
|
|
|
ext.min_sdk_version = 26
|
2022-08-12 11:51:05 +09:00
|
|
|
ext.target_sdk_version = 32
|
2022-09-11 06:09:26 +09:00
|
|
|
ext.compile_sdk_version = 33
|
2022-08-12 11:51:05 +09:00
|
|
|
ext.build_tools_version = "33.0.0"
|
2021-05-08 14:56:34 +09:00
|
|
|
|
2022-11-07 11:45:17 +09:00
|
|
|
ext.appcompat_version = "1.5.1"
|
2022-08-02 12:17:05 +09:00
|
|
|
ext.lifecycle_version = "2.5.1"
|
2021-10-28 05:58:19 +09:00
|
|
|
ext.arch_version = "2.1.0"
|
2018-09-27 23:21:37 +09:00
|
|
|
|
2022-11-07 11:45:17 +09:00
|
|
|
ext.kotlin_version = '1.7.20'
|
2022-08-02 12:17:05 +09:00
|
|
|
ext.kotlinx_coroutines_version = '1.6.4'
|
2021-11-06 11:25:11 +09:00
|
|
|
|
2021-11-06 11:11:28 +09:00
|
|
|
ext.anko_version = '0.10.8'
|
2017-11-04 23:51:15 +09:00
|
|
|
|
2021-11-06 11:11:28 +09:00
|
|
|
ext.junit_version = '4.13.2'
|
Android Studio 4.0.0, Android gradple plugin 4.0.1, Gradle 6.1.1, kotlin 1.4.0, espresso-core:3.3.0-rc03, androidx.test:runner:1.3.0-rc03, androidx.appcompat 1.2.0, androidx.core-ktx 1.3.1, androidx.drawerlayout 1.1.0, androidx.preference 1.1.1, com.google.android.material 1.2.0, firebase-messaging 20.2.4, com.google.android:flexbox 2.0.1, junit 4.13
2020-08-23 07:15:27 +09:00
|
|
|
|
2022-06-05 03:35:07 +09:00
|
|
|
ext.detekt_version = '1.21.0-RC1'
|
2021-10-28 05:58:19 +09:00
|
|
|
|
2021-11-20 09:36:43 +09:00
|
|
|
ext.compose_version = '1.0.5'
|
|
|
|
|
|
|
|
ext.koin_version = '3.1.3'
|
2021-06-20 12:02:30 +09:00
|
|
|
|
2017-04-21 01:23:59 +09:00
|
|
|
repositories {
|
2018-09-27 23:21:37 +09:00
|
|
|
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 {
|
2022-11-07 11:45:17 +09:00
|
|
|
classpath 'com.android.tools.build:gradle:7.3.1'
|
2022-07-08 07:18:58 +09:00
|
|
|
|
|
|
|
// room のバージョンの影響で google-services を上げられない場合がある
|
2022-11-07 11:45:17 +09:00
|
|
|
classpath 'com.google.gms:google-services:4.3.14'
|
2018-05-06 17:09:18 +09:00
|
|
|
|
2017-11-04 23:51:15 +09:00
|
|
|
classpath "org.jetbrains.kotlin:kotlin-gradle-plugin:$kotlin_version"
|
2022-05-29 14:00:51 +09:00
|
|
|
classpath "org.jetbrains.kotlin:kotlin-serialization:$kotlin_version"
|
2019-10-07 05:46:56 +09:00
|
|
|
|
2021-05-05 21:39:00 +09:00
|
|
|
classpath "com.github.bjoernq:unmockplugin:0.7.6"
|
2021-05-22 07:03:16 +09:00
|
|
|
|
2021-06-20 12:02:30 +09:00
|
|
|
classpath "io.gitlab.arturbosch.detekt:detekt-gradle-plugin:$detekt_version"
|
2017-04-21 01:23:59 +09:00
|
|
|
}
|
|
|
|
}
|
|
|
|
|
|
|
|
allprojects {
|
|
|
|
repositories {
|
2018-09-27 23:21:37 +09:00
|
|
|
google()
|
2017-08-24 20:44:06 +09:00
|
|
|
maven { url 'https://maven.google.com' }
|
|
|
|
maven { url 'https://jitpack.io' }
|
2021-05-05 21:39:00 +09:00
|
|
|
|
|
|
|
mavenCentral()
|
|
|
|
|
|
|
|
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
|
|
|
|
}
|
2022-05-29 14:00:51 +09:00
|
|
|
tasks.withType(JavaCompile) {
|
|
|
|
options.compilerArgs << '-Xlint:unchecked'
|
|
|
|
options.compilerArgs << '-Xlint:deprecation'
|
|
|
|
options.compilerArgs << '-Xlint:divzero'
|
|
|
|
}
|