Skip to content
New issue

Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.

By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.

Already on GitHub? Sign in to your account

Weather info does not refresh after 24h #4

Open
hidroh opened this issue May 4, 2016 · 1 comment
Open

Weather info does not refresh after 24h #4

hidroh opened this issue May 4, 2016 · 1 comment
Labels

Comments

@hidroh
Copy link
Owner

hidroh commented May 4, 2016

No description provided.

@hidroh hidroh added the bug label May 4, 2016
@denysrichter
Copy link

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.

Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment
Labels
Projects
None yet
Development

No branches or pull requests

2 participants