Convert to my app, so I can continue a fork!
This commit is contained in:
@@ -4,18 +4,18 @@ import java.io.FileInputStream
|
||||
import java.util.Properties
|
||||
|
||||
plugins {
|
||||
id("gq.kirmanak.mealient.application")
|
||||
id("com.atridad.mealient.application")
|
||||
id("dagger.hilt.android.plugin")
|
||||
alias(libs.plugins.ksp)
|
||||
id("gq.kirmanak.mealient.compose.app")
|
||||
id("com.atridad.mealient.compose.app")
|
||||
}
|
||||
|
||||
android {
|
||||
defaultConfig {
|
||||
applicationId = "gq.kirmanak.mealient"
|
||||
applicationId = "com.atridad.mealient"
|
||||
versionCode = 37
|
||||
versionName = "0.4.8"
|
||||
testInstrumentationRunner = "gq.kirmanak.mealient.MealientTestRunner"
|
||||
testInstrumentationRunner = "com.atridad.mealient.MealientTestRunner"
|
||||
testInstrumentationRunnerArguments += mapOf("clearPackageData" to "true")
|
||||
resourceConfigurations += listOf("en", "es", "ru", "fr", "nl", "pt", "de")
|
||||
}
|
||||
@@ -50,7 +50,7 @@ android {
|
||||
}
|
||||
}
|
||||
|
||||
namespace = "gq.kirmanak.mealient"
|
||||
namespace = "com.atridad.mealient"
|
||||
|
||||
packaging {
|
||||
resources.excludes += "DebugProbesKt.bin"
|
||||
@@ -145,25 +145,25 @@ kover {
|
||||
filters {
|
||||
excludes {
|
||||
classes(
|
||||
"gq.kirmanak.mealient.datastore.recipe.AddRecipeInput*", // generated by data store
|
||||
"com.atridad.mealient.datastore.recipe.AddRecipeInput*", // generated by data store
|
||||
"*ComposableSingletons*", // generated by Compose
|
||||
"gq.kirmanak.mealient.database.AppDb_Impl*", // generated by Room
|
||||
"com.atridad.mealient.database.AppDb_Impl*", // generated by Room
|
||||
"*Dao_Impl*", // generated by Room
|
||||
"*Hilt_*", // generated by Hilt
|
||||
)
|
||||
packages(
|
||||
"gq.kirmanak.mealient*.destinations", // generated by Compose destinations
|
||||
"com.atridad.mealient*.destinations", // generated by Compose destinations
|
||||
)
|
||||
annotatedBy(
|
||||
"androidx.compose.ui.tooling.preview.Preview",
|
||||
"gq.kirmanak.mealient.ui.preview.ColorSchemePreview",
|
||||
"com.atridad.mealient.ui.preview.ColorSchemePreview",
|
||||
"androidx.compose.runtime.Composable",
|
||||
"dagger.Module",
|
||||
"dagger.internal.DaggerGenerated",
|
||||
)
|
||||
}
|
||||
includes {
|
||||
packages("gq.kirmanak.mealient")
|
||||
packages("com.atridad.mealient")
|
||||
}
|
||||
}
|
||||
variant("release") {
|
||||
|
||||
Reference in New Issue
Block a user