Properties updated

Took 3 minutes
This commit is contained in:
2022-06-10 00:38:18 +01:00
parent d606717808
commit e8b3e6a8cf

View File

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