Initial commit
This commit is contained in:
28
androidApp/build.gradle.kts
Normal file
28
androidApp/build.gradle.kts
Normal file
@@ -0,0 +1,28 @@
|
||||
plugins {
|
||||
alias(libs.plugins.compose.compiler)
|
||||
alias(libs.plugins.kotlin.android)
|
||||
alias(libs.plugins.android.application)
|
||||
}
|
||||
|
||||
android {
|
||||
namespace = "org.shahondin1624"
|
||||
compileSdk = 36
|
||||
|
||||
defaultConfig {
|
||||
minSdk = 23
|
||||
targetSdk = 36
|
||||
|
||||
applicationId = "org.shahondin1624.androidApp"
|
||||
versionCode = 1
|
||||
versionName = "1.0.0"
|
||||
}
|
||||
}
|
||||
|
||||
kotlin {
|
||||
jvmToolchain(17)
|
||||
}
|
||||
|
||||
dependencies {
|
||||
implementation(project(":sharedUI"))
|
||||
implementation(libs.androidx.activityCompose)
|
||||
}
|
||||
Reference in New Issue
Block a user