|
|
|
plugins {
|
|
|
|
kotlin("multiplatform")
|
|
|
|
id("com.android.application")
|
|
|
|
id("org.jetbrains.compose")
|
|
|
|
id("com.google.android.libraries.mapsplatform.secrets-gradle-plugin") version "2.0.1"
|
|
|
|
}
|
|
|
|
|
|
|
|
kotlin {
|
|
|
|
androidTarget()
|
|
|
|
sourceSets {
|
|
|
|
val androidMain by getting {
|
|
|
|
dependencies {
|
|
|
|
implementation(project(":shared"))
|
|
|
|
}
|
|
|
|
}
|
|
|
|
}
|
|
|
|
}
|
|
|
|
|
|
|
|
android {
|
|
|
|
compileSdk = 34
|
|
|
|
namespace = "example.imageviewer"
|
|
|
|
defaultConfig {
|
|
|
|
applicationId = "org.jetbrains.Imageviewer"
|
|
|
|
minSdk = 26
|
|
|
|
targetSdk = 34
|
|
|
|
versionCode = 1
|
|
|
|
versionName = "1.0"
|
|
|
|
}
|
|
|
|
compileOptions {
|
|
|
|
sourceCompatibility = JavaVersion.VERSION_17
|
|
|
|
targetCompatibility = JavaVersion.VERSION_17
|
|
|
|
}
|
|
|
|
kotlin {
|
|
|
|
jvmToolchain(17)
|
|
|
|
}
|
|
|
|
}
|
|
|
|
|
|
|
|
secrets {
|
|
|
|
defaultPropertiesFileName = "default.local.properties"
|
|
|
|
propertiesFileName = "local.properties"
|
|
|
|
}
|