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.
42 lines
820 B
42 lines
820 B
6 months ago
|
plugins {
|
||
|
id("org.jetbrains.compose")
|
||
|
id("com.android.application")
|
||
|
kotlin("android")
|
||
|
}
|
||
|
|
||
|
group "com.example"
|
||
|
version "1.0-SNAPSHOT"
|
||
|
|
||
|
repositories {
|
||
|
jcenter()
|
||
|
}
|
||
|
|
||
|
dependencies {
|
||
|
implementation(project(":common"))
|
||
|
implementation("androidx.activity:activity-compose:1.5.0")
|
||
|
}
|
||
|
|
||
|
android {
|
||
|
compileSdk = 34
|
||
|
namespace = "com.example.android"
|
||
|
defaultConfig {
|
||
|
applicationId = "com.example.android"
|
||
|
minSdk = 24
|
||
|
targetSdk = 33
|
||
|
versionCode = 1
|
||
|
versionName = "1.0-SNAPSHOT"
|
||
|
}
|
||
|
compileOptions {
|
||
|
sourceCompatibility = JavaVersion.VERSION_17
|
||
|
targetCompatibility = JavaVersion.VERSION_17
|
||
|
}
|
||
|
kotlin {
|
||
|
jvmToolchain(17)
|
||
|
}
|
||
|
buildTypes {
|
||
|
getByName("release") {
|
||
|
isMinifyEnabled = false
|
||
|
}
|
||
|
}
|
||
|
}
|