Skip to content
This repository has been archived by the owner on Aug 26, 2024. It is now read-only.

Commit

Permalink
chore: made publishable
Browse files Browse the repository at this point in the history
  • Loading branch information
charlee-dev committed Jun 30, 2024
1 parent 6053548 commit 1474a6a
Showing 1 changed file with 4 additions and 3 deletions.
7 changes: 4 additions & 3 deletions components/localization/build.gradle.kts
Original file line number Diff line number Diff line change
@@ -1,5 +1,4 @@
import com.codingfeline.buildkonfig.compiler.FieldSpec
import org.jetbrains.compose.internal.utils.getLocalProperty

plugins {
id("common")
Expand All @@ -16,8 +15,10 @@ kotlin {

buildkonfig {
packageName = project.name
val appName: String = getLocalProperty("app.name") ?: error("No app.name property found")
val orgName: String = getLocalProperty("org.name") ?: error("No org.name property found")
val appName: String = "BeNatty"
// getLocalProperty("app.name") ?: error("No app.name property found")
val orgName: String = "CharLEE X"
// getLocalProperty("org.name") ?: error("No org.name property found")

defaultConfigs {
buildConfigField(FieldSpec.Type.STRING, "appName", appName)
Expand Down

0 comments on commit 1474a6a

Please sign in to comment.