65 lines
2.3 KiB
Kotlin
65 lines
2.3 KiB
Kotlin
plugins {
|
|
id("com.android.application")
|
|
id("com.google.devtools.ksp")
|
|
id("org.jetbrains.kotlin.android")
|
|
}
|
|
|
|
kotlin {
|
|
jvmToolchain(17)
|
|
}
|
|
|
|
android {
|
|
namespace = "com.rtbishop.look4sat"
|
|
compileSdk = 34
|
|
defaultConfig {
|
|
applicationId = "com.rtbishop.look4sat"
|
|
minSdk = 21
|
|
targetSdk = 34
|
|
versionCode = 313
|
|
versionName = "3.1.3"
|
|
resourceConfigurations.addAll(listOf("en", "ru", "si", "zh-rCN", "anydpi"))
|
|
testInstrumentationRunner = "androidx.test.runner.AndroidJUnitRunner"
|
|
}
|
|
buildFeatures {
|
|
compose = true
|
|
}
|
|
buildTypes {
|
|
release {
|
|
isMinifyEnabled = true
|
|
isShrinkResources = true
|
|
proguardFiles(getDefaultProguardFile("proguard-android-optimize.txt"), "proguard-rules.pro")
|
|
}
|
|
}
|
|
composeOptions { kotlinCompilerExtensionVersion = "1.5.3" }
|
|
}
|
|
|
|
dependencies {
|
|
implementation(project(":data"))
|
|
implementation(project(":domain"))
|
|
|
|
implementation("androidx.core:core-splashscreen:1.0.1")
|
|
implementation("androidx.room:room-runtime:2.5.2")
|
|
implementation("androidx.room:room-ktx:2.5.2")
|
|
ksp("androidx.room:room-compiler:2.5.2")
|
|
|
|
implementation("androidx.activity:activity-compose:1.7.2")
|
|
implementation("androidx.compose.animation:animation:1.5.2")
|
|
implementation("androidx.compose.compiler:compiler:1.5.3")
|
|
implementation("androidx.compose.material3:material3:1.1.2")
|
|
implementation("androidx.compose.runtime:runtime:1.5.2")
|
|
implementation("androidx.compose.ui:ui-tooling-preview:1.5.2")
|
|
implementation("androidx.lifecycle:lifecycle-runtime-compose:2.6.2")
|
|
implementation("androidx.lifecycle:lifecycle-viewmodel-compose:2.6.2")
|
|
implementation("androidx.navigation:navigation-compose:2.7.3")
|
|
|
|
implementation("com.squareup.okhttp3:okhttp:4.10.0")
|
|
implementation("org.osmdroid:osmdroid-android:6.1.17")
|
|
debugImplementation("androidx.compose.ui:ui-tooling:1.5.2")
|
|
debugImplementation("androidx.compose.ui:ui-test-manifest:1.5.2")
|
|
|
|
testImplementation("junit:junit:4.13.2")
|
|
testImplementation("io.mockk:mockk:1.13.8")
|
|
testImplementation("org.jetbrains.kotlinx:kotlinx-coroutines-test:1.7.3")
|
|
androidTestImplementation("androidx.compose.ui:ui-test-junit4:1.5.2")
|
|
}
|