I am trying to show a map in my app with a feature to see current location. The app was working fine until yesterday but now I am getting this strange error
The Google Play services resources were not found. Check your project configuration to ensure that the resources are included.
There are extensive answers to this problem here on stackoverflow and I tried all of them. I will be listing them down.
- Copied (Imported) google-play-services_lib from sdk folder to my Workspace. and marked that as library with a solid green check mark.
- Google Maps Android API v2 is turned ON in my google API console.
- Verified my app package name with the package name in the API console.
- Deleted the bin folder of my project and clean/rebuilt my project.
- added raw value 4030500 instead of @integer/google_play_services_version in manifest
- Crosschecked Google Play Services Rev. 15 is installed
- Regenerated my API Key from console.
The only way I donot see the error is to remove googleMap.setMyLocationEnabled(true);
this code. But I dont want to remove it because I want current location enabled.
Any new solutions? Thanks!