We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
1 parent 1fb5e44 commit a49fd00Copy full SHA for a49fd00
1 file changed
app/build.gradle.kts
@@ -103,8 +103,8 @@ fun getProperty(value: String): String {
103
val localProps = Properties().apply {
104
load(FileInputStream(localPropertiesFile))
105
}
106
- localProps.getProperty(value) ?: "sample_val"
+ localProps.getProperty(value) ?: "\"sample_val\""
107
} else {
108
- System.getenv(value) ?: "sample_val"
+ System.getenv(value) ?: "\"sample_val\""
109
110
0 commit comments