We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
1 parent 1ad3ee0 commit c2aa2c5Copy full SHA for c2aa2c5
sample/build.gradle
@@ -10,9 +10,11 @@ plugins {
10
}
11
12
def properties = new Properties()
13
-properties.load(new FileInputStream(rootProject.file('local.properties')))
+if (rootProject.file('local.properties').exists()) {
14
+ properties.load(new FileInputStream(rootProject.file('local.properties')))
15
+}
16
-def apiBaseUrl = properties.getProperty('api.base_url') ?: "test.kz"
17
+def apiBaseUrl = properties.getProperty('api.base_url') ?: '"test.kz"'
18
def callTopic = properties.getProperty('call.topic') ?: '"general"'
19
def callPhoneNumber = properties.getProperty('call.phone_number') ?: '"87771234567"'
20
def callDestination = properties.getProperty('call.destination') ?: '"777"'
0 commit comments