I am using google maps in my android app and map successfully loaded in my app. I initialize google map in my app with this code :
mGoogleApiClient = new GoogleApiClient.Builder(this)
.addConnectionCallbacks(this)
.addOnConnectionFailedListener(this)
.addApi(Places.GEO_DATA_API)
.addApi(Places.PLACE_DETECTION_API)
.addApi(LocationServices.API)
.enableAutoManage(this, this)
.build();
And google places api was worked for me very well, but today an error occurred when using place auto complete! this is first time that this error is occurred :
Status{statusCode=PLACES_API_INVALID_APP, resolution=null}
I using the correct api key and all of my code is correct because it worked until today. But suddenly this error occurred. Please help me :) thanks in advance