v0.6.4
This is a test if updates work
This commit is contained in:
105
app/build.gradle.kts
Normal file
105
app/build.gradle.kts
Normal file
@@ -0,0 +1,105 @@
|
||||
plugins {
|
||||
alias(libs.plugins.looker.android.application)
|
||||
alias(libs.plugins.looker.hilt.work)
|
||||
alias(libs.plugins.looker.lint)
|
||||
alias(libs.plugins.kotlin.parcelize)
|
||||
}
|
||||
|
||||
android {
|
||||
namespace = "com.looker.droidify"
|
||||
defaultConfig {
|
||||
vectorDrawables.useSupportLibrary = true
|
||||
}
|
||||
|
||||
androidResources {
|
||||
generateLocaleConfig = true
|
||||
}
|
||||
|
||||
sourceSets.forEach { source ->
|
||||
val javaDir = source.java.srcDirs.find { it.name == "java" }
|
||||
source.java {
|
||||
srcDir(File(javaDir?.parentFile, "kotlin"))
|
||||
}
|
||||
}
|
||||
|
||||
buildTypes {
|
||||
getByName("debug") {
|
||||
applicationIdSuffix = ".debug"
|
||||
resValue("string", "application_name", "Droid-ify-Debug")
|
||||
}
|
||||
getByName("release") {
|
||||
isMinifyEnabled = true
|
||||
isShrinkResources = true
|
||||
resValue("string", "application_name", "Droid-ify")
|
||||
proguardFiles(
|
||||
getDefaultProguardFile("proguard-android-optimize.txt"),
|
||||
"proguard.pro"
|
||||
)
|
||||
}
|
||||
create("alpha") {
|
||||
initWith(getByName("debug"))
|
||||
applicationIdSuffix = ".alpha"
|
||||
resValue("string", "application_name", "Droid-ify Alpha")
|
||||
proguardFiles(
|
||||
getDefaultProguardFile("proguard-android-optimize.txt"),
|
||||
"proguard.pro"
|
||||
)
|
||||
isDebuggable = true
|
||||
isMinifyEnabled = true
|
||||
}
|
||||
all {
|
||||
buildConfigField(
|
||||
type = "String",
|
||||
name = "VERSION_NAME",
|
||||
value = "\"v${DefaultConfig.versionName}\""
|
||||
)
|
||||
}
|
||||
}
|
||||
packaging {
|
||||
resources {
|
||||
excludes += listOf(
|
||||
"/DebugProbesKt.bin",
|
||||
"/kotlin/**.kotlin_builtins",
|
||||
"/kotlin/**.kotlin_metadata",
|
||||
"/META-INF/**.kotlin_module",
|
||||
"/META-INF/**.pro",
|
||||
"/META-INF/**.version",
|
||||
"/META-INF/versions/9/previous-**.bin"
|
||||
)
|
||||
}
|
||||
}
|
||||
buildFeatures {
|
||||
resValues = true
|
||||
viewBinding = true
|
||||
buildConfig = true
|
||||
}
|
||||
}
|
||||
|
||||
dependencies {
|
||||
|
||||
modules(
|
||||
Modules.coreDomain,
|
||||
// Modules.coreData,
|
||||
Modules.coreCommon,
|
||||
Modules.coreNetwork,
|
||||
Modules.coreDatastore,
|
||||
Modules.coreDI,
|
||||
Modules.installer,
|
||||
)
|
||||
|
||||
implementation(libs.android.material)
|
||||
implementation(libs.androidx.core.ktx)
|
||||
implementation(libs.androidx.activity)
|
||||
implementation(libs.androidx.appcompat)
|
||||
implementation(libs.androidx.fragment.ktx)
|
||||
implementation(libs.androidx.lifecycle.viewModel)
|
||||
implementation(libs.androidx.recyclerview)
|
||||
implementation(libs.androidx.sqlite.ktx)
|
||||
implementation(libs.coil.kt)
|
||||
implementation(libs.kotlinx.datetime)
|
||||
implementation(libs.kotlinx.coroutines.android)
|
||||
implementation(libs.jackson.core)
|
||||
implementation(libs.image.viewer)
|
||||
|
||||
// debugImplementation(libs.leakcanary)
|
||||
}
|
||||
Reference in New Issue
Block a user