Skip to content

Commit c2aa2c5

Browse files
committed
Release v1.5.0
1 parent 1ad3ee0 commit c2aa2c5

File tree

1 file changed

+4
-2
lines changed

1 file changed

+4
-2
lines changed

sample/build.gradle

+4-2
Original file line numberDiff line numberDiff line change
@@ -10,9 +10,11 @@ plugins {
1010
}
1111

1212
def properties = new Properties()
13-
properties.load(new FileInputStream(rootProject.file('local.properties')))
13+
if (rootProject.file('local.properties').exists()) {
14+
properties.load(new FileInputStream(rootProject.file('local.properties')))
15+
}
1416

15-
def apiBaseUrl = properties.getProperty('api.base_url') ?: "test.kz"
17+
def apiBaseUrl = properties.getProperty('api.base_url') ?: '"test.kz"'
1618
def callTopic = properties.getProperty('call.topic') ?: '"general"'
1719
def callPhoneNumber = properties.getProperty('call.phone_number') ?: '"87771234567"'
1820
def callDestination = properties.getProperty('call.destination') ?: '"777"'

0 commit comments

Comments
 (0)