Im trying to implement Google-Places-API. I generated an API-Key as described here by copy/pasting the SHA1-Fingerprint from my "debug.keystore" into the corresponding field in credentials.
As the Projectname i used the value of "applicationId" from my build.gradle.
Now I am trying to use AutoComplete from the API like:
Intent intent = new PlaceAutocomplete.IntentBuilder(PlaceAutocomplete.MODE_OVERLAY).build(getTurActivity());
startActivityForResult(intent, PLACE_AUTOCOMPLETE_REQUEST_CODE);
When I print out the status in onActivityResult i get the Status (see title) and the Status-Code: 9003
I am aware that this post exists but It didn't solve my problem. I checked my credentials and the API key, and everything seems to be just fine.
In my manifest file i set the API key inside application like this:
<meta-data
android:name="com.google.android.geo.API_KEY"
android:value="AIz*********....***"/>