98 lines
2.6 KiB
Kotlin
98 lines
2.6 KiB
Kotlin
import com.android.build.api.variant.BuildConfigField
|
|
import com.android.build.gradle.internal.cxx.configure.gradleLocalProperties
|
|
|
|
val debugUserId: String = getLocalProperty("userId", "\"0\"")
|
|
val debugAccessToken: String = getLocalProperty("accessToken", "\"\"")
|
|
|
|
fun getLocalProperty(key: String, defValue: String): String {
|
|
return gradleLocalProperties(rootDir, providers).getProperty(key, defValue)
|
|
}
|
|
|
|
plugins {
|
|
alias(libs.plugins.android.library)
|
|
alias(libs.plugins.org.jetbrains.kotlin.android)
|
|
alias(libs.plugins.kotlin.compose.compiler)
|
|
alias(libs.plugins.org.jetbrains.kotlin.plugin.parcelize)
|
|
alias(libs.plugins.kotlin.serialization)
|
|
}
|
|
|
|
androidComponents {
|
|
onVariants { variant ->
|
|
variant.buildConfigFields.apply {
|
|
put(
|
|
"debugUserId",
|
|
BuildConfigField(
|
|
type = "String",
|
|
value = debugUserId,
|
|
comment = "user id for debugging purposes"
|
|
)
|
|
)
|
|
put(
|
|
"debugAccessToken",
|
|
BuildConfigField(
|
|
type = "String",
|
|
value = debugAccessToken,
|
|
comment = "access token for debugging purposes"
|
|
)
|
|
)
|
|
}
|
|
}
|
|
}
|
|
|
|
android {
|
|
namespace = "com.meloda.app.fast.auth.login"
|
|
compileSdk = Configs.compileSdk
|
|
|
|
defaultConfig {
|
|
minSdk = Configs.minSdk
|
|
}
|
|
|
|
buildTypes {
|
|
release {
|
|
isMinifyEnabled = false
|
|
}
|
|
}
|
|
compileOptions {
|
|
sourceCompatibility = Configs.java
|
|
targetCompatibility = Configs.java
|
|
}
|
|
kotlinOptions {
|
|
jvmTarget = Configs.java.toString()
|
|
freeCompilerArgs = listOf("-opt-in=kotlin.RequiresOptIn", "-Xcontext-receivers")
|
|
}
|
|
buildFeatures {
|
|
compose = true
|
|
buildConfig = true
|
|
}
|
|
|
|
composeOptions {
|
|
useLiveLiterals = true
|
|
}
|
|
}
|
|
|
|
dependencies {
|
|
implementation(projects.core.data)
|
|
implementation(projects.core.ui)
|
|
|
|
implementation(libs.nanokt.android)
|
|
implementation(libs.nanokt.jvm)
|
|
implementation(libs.nanokt)
|
|
|
|
implementation(libs.koin.android)
|
|
implementation(libs.koin.androidx.compose)
|
|
|
|
implementation(platform(libs.compose.bom))
|
|
implementation(libs.bundles.compose)
|
|
|
|
implementation(libs.coil.compose)
|
|
|
|
implementation(libs.eithernet)
|
|
implementation(libs.androidx.navigation.compose)
|
|
implementation(libs.kotlin.serialization)
|
|
|
|
implementation(libs.rebugger)
|
|
|
|
androidTestImplementation(libs.compose.ui.test.junit4)
|
|
debugImplementation(libs.compose.ui.test.manifest)
|
|
}
|