fix(build): resolve all build, dependency, and toolchain errors
This commit is contained in:
25
apps/android/androidApp/build.gradle.kts
Normal file
25
apps/android/androidApp/build.gradle.kts
Normal file
@@ -0,0 +1,25 @@
|
||||
plugins {
|
||||
id("com.android.application")
|
||||
kotlin("android")
|
||||
}
|
||||
|
||||
android {
|
||||
namespace = "com.corestate.androidApp"
|
||||
compileSdk = 34
|
||||
defaultConfig {
|
||||
applicationId = "com.corestate.androidApp"
|
||||
minSdk = 26
|
||||
targetSdk = 34
|
||||
versionCode = 1
|
||||
versionName = "1.0"
|
||||
}
|
||||
buildTypes {
|
||||
getByName("release") {
|
||||
isMinifyEnabled = false
|
||||
}
|
||||
}
|
||||
}
|
||||
|
||||
dependencies {
|
||||
implementation(project(":apps:android:shared"))
|
||||
}
|
||||
19
apps/android/shared/build.gradle.kts
Normal file
19
apps/android/shared/build.gradle.kts
Normal file
@@ -0,0 +1,19 @@
|
||||
plugins {
|
||||
kotlin("multiplatform")
|
||||
id("com.android.library")
|
||||
}
|
||||
|
||||
kotlin {
|
||||
androidTarget()
|
||||
sourceSets {
|
||||
val commonMain by getting
|
||||
}
|
||||
}
|
||||
|
||||
android {
|
||||
namespace = "com.corestate.shared"
|
||||
compileSdk = 34
|
||||
defaultConfig {
|
||||
minSdk = 26
|
||||
}
|
||||
}
|
||||
Reference in New Issue
Block a user