mirror of
https://github.com/msfjarvis/compose-lobsters
synced 2025-08-14 10:37:05 +05:30
30 lines
766 B
Kotlin
30 lines
766 B
Kotlin
plugins {
|
|
id("org.jetbrains.compose") version "0.4.0"
|
|
id("com.android.application")
|
|
kotlin("android")
|
|
}
|
|
|
|
dependencies {
|
|
implementation(projects.api)
|
|
implementation(projects.common)
|
|
implementation(libs.androidx.activity.compose)
|
|
implementation(libs.androidx.appcompat)
|
|
implementation(libs.androidx.paging.compose)
|
|
implementation(libs.retrofit.moshiConverter)
|
|
}
|
|
|
|
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
|
|
}
|
|
}
|