forecastio-lib-java icon indicating copy to clipboard operation
forecastio-lib-java copied to clipboard

A Java library for the Forecast.io weather API.

Results 3 forecastio-lib-java issues
Sort by recently updated
recently updated
newest added

I'm using version 1.6.0 of ForecastIOLib, linked as Dependencies{ implementation 'com.github.dvdme:ForecastIOLib:1.6.0' } I'm seeing error messages in my Android logs but I can't debug them further using what ForecastIO is...

For instance, `dataPoint.icon()` will not return `partly-cloudy-day` but `"partly-cloudy-day"`. This is because of the way the `void update(JsonObject dp)` method is coded. This takes all the fields in the Json...

Currently these methods only check if the object is non null, and if so, start querying it. However if it's not null but empty this will fail. Adding a check...