| 1234567891011121314151617181920212223242526272829303132333435363738394041 |
- plugins {
- kotlin("multiplatform")
- id("com.android.application")
- id("org.jetbrains.compose")
- }
- kotlin {
- android {
- compilations.all {
- kotlinOptions {
- jvmTarget = "1.8"
- }
- }
- }
- sourceSets {
- val androidMain by getting {
- dependencies {
- implementation(project(":shared"))
- }
- }
- }
- }
- android {
- compileSdk = (findProperty("android.compileSdk") as String).toInt()
- namespace = "com.myapplication"
- sourceSets["main"].manifest.srcFile("src/androidMain/AndroidManifest.xml")
- defaultConfig {
- applicationId = "com.myapplication.MyApplication"
- minSdk = (findProperty("android.minSdk") as String).toInt()
- targetSdk = (findProperty("android.targetSdk") as String).toInt()
- versionCode = 1
- versionName = "1.0"
- }
- compileOptions {
- sourceCompatibility = JavaVersion.VERSION_1_8
- targetCompatibility = JavaVersion.VERSION_1_8
- }
- }
|