Linked Questions
35 questions linked to/from Where is debug.keystore in Android Studio
388 votes
29 answers
206k views
This version of the application is not configured for billing through Google Play
When I try to run my application with in-app billing I am getting the error: "This version of the application is not configured for billing through Google Play. Check the help center for more ...
163 votes
33 answers
203k views
Why do I get com.google.android.gms.common.api.ApiException: 10:?
private void handleSignInResult(Task<GoogleSignInAccount> completedTask) { try { GoogleSignInAccount account = completedTask.getResult(ApiException.class); //exception is here ...
125 votes
23 answers
132k views
the item you requested is not available for purchase
I'm trying to integrate Android Market in-app purchases into my app, but unfortunately coming across an annoying error every time I try to purchase a real inapp product. I've taken the sample ...
181 votes
5 answers
100k views
I don't remember my android debug.keystore password
How can i see my debug.keystore password? I entered my password 3 or 4 month ago and now i don't remember. If it is impossible, how can i create new debug.keystore?
109 votes
7 answers
107k views
Android Studio - debug keystore
Does Android Studio sign debug builds? If so, where is the keystore it uses to do it?
52 votes
16 answers
172k views
Keystore file does not exist
I'm trying to use the Google Maps API in one of my projects and in the directions to set up the API credentials it wants me to add my application's SHA-1 signing-certificate fingerprint to the API. ...
42 votes
20 answers
35k views
"An internal error occurred" with integration of Google Plus Login
I am trying to integrate a Google plus Login in my application as per the instruction provided by following link : https://developers.google.com/+/quickstart/android#install-sdk I am following all ...
39 votes
7 answers
45k views
What is the equivalent of Eclipse "Custom debug Keystore" in Android studio?
As I am working with Google Maps API, I have been used to work with a custom debug key in Eclipse (that is in fact my production key) This manipulation allowed me to use the same API key for Maps and ...
22 votes
5 answers
36k views
How to set a custom keystore for debugging in eclipse for android
I have a custom keystore that I use for signing my apk. now I want to use the same keystore for debugging. when I go to eclipse->windows->preferences->android->build and set my custom key store I get "...
10 votes
8 answers
15k views
Google Oauth 2.0 RESULT_CANCELED while using Google Fit api
I am trying to use google fit api in my android app. I followed this guide and created SHA-1 certificate using keytool.exe in my jdk 1.8 bin folder. I have now created Oauth Client ID. In my app, I ...
8 votes
4 answers
8k views
Toast : Internal Error Occur with integration of Google Plus in Android
I am integrating the Google Plus in my Android app. I have created the project in the Google API Console. I created the OAuth Client ID and I doubled check the package name and Keystore SHA1 but both ...
13 votes
5 answers
18k views
Google sign-in fragment returning RESULT_CANCELED
I am trying to integrate Google sign-in into my android app using Firebase, but I am running into issues. I am following the tutorial here, and I believe that I have followed it to the word. I added ...
4 votes
3 answers
9k views
error 12500 in google sign in 8.3.0 when requesting ".requestServerAuthCode"
With the new google sign 8.3.0 the login works until requesting ".requestServerAuthCode("client id from web application under Oauth 2.0 client ids") . Looks something like "10381xxxxx183-...
1 vote
3 answers
7k views
Android Google+ Signin "An internal error has occurred"
I'm writing an app that allows users to login via Facebook or Google+. What I've done is write an interface for the login, so that either one can be used. Facebook login went just fine after hours ...