mirror of
https://github.com/tateisu/SubwayTooter
synced 2025-01-09 16:04:26 +01:00
249ff52556
- versionName 5.0.0 - 会話を別タンスで開く際に同期用のステータスURLを整形する - exoplayer:2.18.1 - lifecycle_version=2.5.1 - roomVersion=2.4.3 - kotlin_version1.7.10 - kotlinx_coroutines_version1.6.4 - remove kotlinOptions.useIR=true
50 lines
1.4 KiB
Groovy
50 lines
1.4 KiB
Groovy
apply plugin: 'com.android.library'
|
|
apply plugin: 'kotlin-android'
|
|
|
|
android {
|
|
compileSdkVersion compile_sdk_version
|
|
|
|
compileOptions {
|
|
sourceCompatibility JavaVersion.VERSION_1_8
|
|
targetCompatibility JavaVersion.VERSION_1_8
|
|
}
|
|
|
|
defaultConfig {
|
|
targetSdkVersion target_sdk_version
|
|
minSdkVersion min_sdk_version
|
|
vectorDrawables.useSupportLibrary = true
|
|
testInstrumentationRunner "android.support.test.runner.AndroidJUnitRunner"
|
|
}
|
|
|
|
lintOptions {
|
|
abortOnError false
|
|
}
|
|
|
|
resourcePrefix "cpv_"
|
|
|
|
kotlinOptions {
|
|
jvmTarget = jvm_target
|
|
freeCompilerArgs += [
|
|
"-Xopt-in=kotlin.ExperimentalStdlibApi",
|
|
"-Xopt-in=kotlinx.coroutines.ExperimentalCoroutinesApi",
|
|
"-Xopt-in=kotlinx.serialization.ExperimentalSerializationApi",
|
|
"-Xopt-in=androidx.compose.foundation.ExperimentalFoundationApi",
|
|
"-Xopt-in=androidx.compose.animation.ExperimentalAnimationApi",
|
|
]
|
|
}
|
|
}
|
|
|
|
dependencies {
|
|
implementation "androidx.appcompat:appcompat:$appcompat_version"
|
|
|
|
implementation 'com.google.android.flexbox:flexbox:3.0.0'
|
|
|
|
testImplementation "junit:junit:$junit_version"
|
|
|
|
androidTestImplementation "androidx.test:core:1.4.0"
|
|
|
|
androidTestImplementation('androidx.test.espresso:espresso-core:3.1.0-alpha4', {
|
|
exclude group: 'com.android.support', module: 'support-annotations'
|
|
})
|
|
}
|