mirror of
https://github.com/LiveFastEatTrashRaccoon/RaccoonForLemmy.git
synced 2025-02-03 11:37:37 +01:00
56 lines
1.4 KiB
Plaintext
56 lines
1.4 KiB
Plaintext
plugins {
|
|
alias(libs.plugins.android.application)
|
|
alias(libs.plugins.kotlin.android)
|
|
alias(libs.plugins.compose)
|
|
alias(libs.plugins.gms)
|
|
alias(libs.plugins.crashlytics)
|
|
}
|
|
|
|
android {
|
|
namespace = "com.github.diegoberaldin.raccoonforlemmy.android"
|
|
compileSdk = 33
|
|
defaultConfig {
|
|
applicationId = "com.github.diegoberaldin.raccoonforlemmy.android"
|
|
minSdk = 26
|
|
targetSdk = 33
|
|
versionCode = 11
|
|
versionName = "1.0.0-beta01"
|
|
}
|
|
buildFeatures {
|
|
compose = true
|
|
}
|
|
composeOptions {
|
|
kotlinCompilerExtensionVersion = "1.4.6"
|
|
}
|
|
packagingOptions {
|
|
resources {
|
|
excludes += "/META-INF/{AL2.0,LGPL2.1}"
|
|
}
|
|
}
|
|
buildTypes {
|
|
getByName("release") {
|
|
isMinifyEnabled = false
|
|
}
|
|
}
|
|
compileOptions {
|
|
sourceCompatibility = JavaVersion.VERSION_17
|
|
targetCompatibility = JavaVersion.VERSION_17
|
|
}
|
|
kotlinOptions {
|
|
jvmTarget = "17"
|
|
}
|
|
}
|
|
|
|
dependencies {
|
|
implementation(compose.runtime)
|
|
implementation(compose.foundation)
|
|
implementation(compose.material3)
|
|
implementation(libs.androidx.activity.compose)
|
|
implementation(libs.koin.core)
|
|
implementation(libs.koin.android)
|
|
|
|
implementation(projects.shared)
|
|
implementation(projects.coreCrashreport)
|
|
implementation(projects.coreUtils)
|
|
}
|