calendar icon indicating copy to clipboard operation
calendar copied to clipboard

Weather info does not refresh after 24h

Open hidroh opened this issue 8 years ago • 1 comments

hidroh avatar May 04 '16 01:05 hidroh

Hello, I downloaded your project and found a small error. It was not showing the weather. I correct the code in this part: wrong.... @VisibleForTesting      protected void requestLocationPermissions () {          ActivityCompat.requestPermissions (this,                  new String [] {                          Manifest.permission.ACCESS_COARSE_LOCATION},                  REQUEST_CODE_LOCATION);      }

right... @VisibleForTesting      protected void requestLocationPermissions () {          ActivityCompat.requestPermissions (this,                  new String [] {                          Manifest.permission.ACCESS_COARSE_LOCATION,                          Manifest.permission.ACCESS_FINE_LOCATION},                  REQUEST_CODE_LOCATION);      }

I'm using your project to complement my project. Thank you very much for posting your project. was a great help.

denysrichter avatar Feb 27 '19 04:02 denysrichter