We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
There was an error while loading. Please reload this page.
1 parent c4915c8 commit e446fb2Copy full SHA for e446fb2
1 file changed
app/build.gradle
@@ -103,7 +103,7 @@ android {
103
if (file.exists()) {
104
def localProperties = new Properties()
105
localProperties.load(new FileInputStream(file))
106
- if (localProperties.hasProperty(keyName)) {
+ if (localProperties.containsKey(keyName)) {
107
buildConfigField("String", keyName, localProperties[keyName])
108
}
109
0 commit comments