mirror of
https://github.com/msfjarvis/compose-lobsters
synced 2025-08-14 10:37:05 +05:30
33 lines
755 B
Kotlin
33 lines
755 B
Kotlin
plugins {
|
|
id("org.jetbrains.compose") version "0.4.0"
|
|
id("com.android.application")
|
|
kotlin("android")
|
|
}
|
|
|
|
group = "dev.msfjarvis.claw"
|
|
|
|
version = "1.0"
|
|
|
|
repositories { google() }
|
|
|
|
dependencies {
|
|
implementation(projects.common)
|
|
implementation("androidx.appcompat:appcompat:1.4.0-alpha02")
|
|
implementation("androidx.activity:activity-compose:1.3.0-beta01")
|
|
}
|
|
|
|
android {
|
|
compileSdkVersion(30)
|
|
defaultConfig {
|
|
applicationId = "dev.msfjarvis.claw.android"
|
|
minSdkVersion(23)
|
|
targetSdkVersion(30)
|
|
versionCode = 1
|
|
versionName = "1.0"
|
|
}
|
|
buildTypes { getByName("release") { isMinifyEnabled = false } }
|
|
compileOptions {
|
|
sourceCompatibility = JavaVersion.VERSION_1_8
|
|
targetCompatibility = JavaVersion.VERSION_1_8
|
|
}
|
|
}
|