- Dialog changes added

- updated properties retrieval

Took 13 minutes
This commit is contained in:
2022-06-10 00:35:31 +01:00
parent d30992452e
commit d606717808
3 changed files with 17 additions and 4 deletions

View File

@@ -26,8 +26,8 @@ android {
buildConfigField "String", "ParamOne", properties.getProperty('WEATHER_API')
buildConfigField "String", "ParamTwo", properties.getProperty('SEARCH_API')
} else {
buildConfigField "String", "ParamOne", "${WEATHER_API}"
buildConfigField "String", "ParamTwo", "${SEARCH_API}"
buildConfigField "String", "ParamOne", properties.getProperty('WEATHER_API')
buildConfigField "String", "ParamTwo", properties.getProperty('SEARCH_API')
}
}
android {