mirror of
https://github.com/tateisu/SubwayTooter
synced 2024-12-23 07:38:04 +01:00
19d626e5f1
- remove ForegroundPollingService - check notifications in MyFirebaseMessagingService.onMessageReceived - dont send empty search request. Dependencies: - coreLibraryDesugaringEnabled true - desugar_jdk_libs:1.2.0 - material:1.7.0 - exifinterface:1.3.5 - annotation:1.5.0 - firebase-messaging:23.1.0 - work-runtime-ktx:2.8.0-beta01 - appcompat_version = 1.5.1 - kotlin_version = 1.7.20 - Android Gradle plugin 7.3.1 - google-services:4.3.14
68 lines
1.7 KiB
Groovy
68 lines
1.7 KiB
Groovy
buildscript {
|
|
|
|
ext.jvm_target = "1.8"
|
|
|
|
ext.min_sdk_version = 26
|
|
ext.target_sdk_version = 32
|
|
ext.compile_sdk_version = 33
|
|
ext.build_tools_version = "33.0.0"
|
|
|
|
ext.appcompat_version = "1.5.1"
|
|
ext.lifecycle_version = "2.5.1"
|
|
ext.arch_version = "2.1.0"
|
|
|
|
ext.kotlin_version = '1.7.20'
|
|
ext.kotlinx_coroutines_version = '1.6.4'
|
|
|
|
ext.anko_version = '0.10.8'
|
|
|
|
ext.junit_version = '4.13.2'
|
|
|
|
ext.detekt_version = '1.21.0-RC1'
|
|
|
|
ext.compose_version = '1.0.5'
|
|
|
|
ext.koin_version = '3.1.3'
|
|
|
|
repositories {
|
|
google()
|
|
mavenCentral()
|
|
}
|
|
|
|
dependencies {
|
|
classpath 'com.android.tools.build:gradle:7.3.1'
|
|
|
|
// room のバージョンの影響で google-services を上げられない場合がある
|
|
classpath 'com.google.gms:google-services:4.3.14'
|
|
|
|
classpath "org.jetbrains.kotlin:kotlin-gradle-plugin:$kotlin_version"
|
|
classpath "org.jetbrains.kotlin:kotlin-serialization:$kotlin_version"
|
|
|
|
classpath "com.github.bjoernq:unmockplugin:0.7.6"
|
|
|
|
classpath "io.gitlab.arturbosch.detekt:detekt-gradle-plugin:$detekt_version"
|
|
}
|
|
}
|
|
|
|
allprojects {
|
|
repositories {
|
|
google()
|
|
maven { url 'https://maven.google.com' }
|
|
maven { url 'https://jitpack.io' }
|
|
|
|
mavenCentral()
|
|
|
|
maven { url 'https://dl.bintray.com/google/exoplayer/' }
|
|
maven { url 'https://dl.bintray.com/google/flexbox-layout/' }
|
|
}
|
|
}
|
|
|
|
task clean(type: Delete) {
|
|
delete rootProject.buildDir
|
|
}
|
|
tasks.withType(JavaCompile) {
|
|
options.compilerArgs << '-Xlint:unchecked'
|
|
options.compilerArgs << '-Xlint:deprecation'
|
|
options.compilerArgs << '-Xlint:divzero'
|
|
}
|