There was no comma in the line of code calling BuildConfig:
buildTypes.each { it.buildConfigField 'String', 'OPEN_WEATHER_MAP_API_KEY' 'MyOpenWeatherAPIKey' }
Now it reads as follows:
buildTypes.each { it.buildConfigField 'String', 'OPEN_WEATHER_MAP_API_KEY', 'MyOpenWeatherAPIKey' }
source share