mirror of
https://github.com/hmalik144/KotlinMultiplatformWeather.git
synced 2025-12-10 03:05:31 +00:00
39 lines
910 B
Plaintext
39 lines
910 B
Plaintext
plugins {
|
|
id("com.android.application")
|
|
kotlin("android")
|
|
id("kotlin-android-extensions")
|
|
}
|
|
group = "me.h_mal"
|
|
version = "1.0-SNAPSHOT"
|
|
|
|
repositories {
|
|
gradlePluginPortal()
|
|
google()
|
|
jcenter()
|
|
mavenCentral()
|
|
}
|
|
dependencies {
|
|
implementation(project(":shared"))
|
|
implementation("androidx.core:core-ktx:1.2.0")
|
|
implementation("androidx.appcompat:appcompat:1.1.0")
|
|
implementation("androidx.constraintlayout:constraintlayout:1.1.3")
|
|
}
|
|
android {
|
|
compileSdkVersion(29)
|
|
defaultConfig {
|
|
applicationId = "me.h_mal.androidApp"
|
|
minSdkVersion(24)
|
|
targetSdkVersion(29)
|
|
versionCode = 1
|
|
versionName = "1.0"
|
|
}
|
|
buildTypes {
|
|
getByName("release") {
|
|
isMinifyEnabled = false
|
|
}
|
|
}
|
|
packagingOptions {
|
|
exclude("META-INF/common.kotlin_module")
|
|
exclude("META-INF/*.kotlin_module")
|
|
}
|
|
} |