You can not select more than 25 topics
Topics must start with a letter or number, can include dashes ('-') and can be up to 35 characters long.
38 lines
839 B
38 lines
839 B
2 years ago
|
plugins {
|
||
|
kotlin("multiplatform")
|
||
|
id("com.android.application")
|
||
|
id("org.jetbrains.compose")
|
||
2 years ago
|
id("com.google.android.libraries.mapsplatform.secrets-gradle-plugin") version "2.0.1"
|
||
2 years ago
|
}
|
||
|
|
||
|
kotlin {
|
||
|
android()
|
||
|
sourceSets {
|
||
|
val androidMain by getting {
|
||
|
dependencies {
|
||
|
implementation(project(":shared"))
|
||
|
}
|
||
|
}
|
||
|
}
|
||
|
}
|
||
|
|
||
|
android {
|
||
|
compileSdk = 33
|
||
|
defaultConfig {
|
||
2 years ago
|
applicationId = "org.jetbrains.Imageviewer"
|
||
|
minSdk = 26
|
||
2 years ago
|
targetSdk = 33
|
||
|
versionCode = 1
|
||
|
versionName = "1.0"
|
||
|
}
|
||
|
compileOptions {
|
||
2 years ago
|
sourceCompatibility = JavaVersion.VERSION_11
|
||
|
targetCompatibility = JavaVersion.VERSION_11
|
||
2 years ago
|
}
|
||
|
}
|
||
2 years ago
|
|
||
|
secrets {
|
||
|
defaultPropertiesFileName = "default.local.properties"
|
||
|
propertiesFileName = "local.properties"
|
||
|
}
|