Service account doesn't show up in Google Play Console after creation

AndroidGoogle ApiService AccountsGoogle Play-ConsoleReceipt Validation

Android Problem Overview


From my Google Play console I linked a project. Then I created a service account. Still, when refreshing the console, it still says "There are no service accounts associated with your project." Waited over 24 hours already. The purpose of all that is receipts validation.

Picture 1: a linked project: enter image description here

Picture 2: service-account created: enter image description here

Android Solutions


Solution 1 - Android

I had the same problem, I fixed it this way:

When you create a service account in step 2, you need to select a role to grant this service account some permissions, although it shows the step is optional, but for some cases, it's not. If you skip this step, the newly created service account will not show up at the Google Play Console API access page, and you will get this error message, The current user has insufficient permissions to perform the requested operation when you run your code.

enter image description here

Solution 2 - Android

You much enable "Google Play Android Developer API" (one of Google Api & services) for your application via a credential! Google supplies many API for developers can call them from their app. A credential same as a permit (3 types of credentials : API key (such as youtube), OAuth, Service Account) If you never enable one API, it never shown on API Access page!

Solution 3 - Android

In my case: Even if you have created a service account, When you have already deleted the service account with the same name, It appears to have been deleted from the IAM tab of Google Cloud Platform. So it is assumed that it is not visible in the play console.

TODO: Create a service account with a different name (I gave the owner permission in step2 when creating, Like Q Locker's answer.). After creation, it was immediately exposed in the play console.

Solution 4 - Android

Make sure the project name on screen 1 and screen 2 are the same. In my case project name were different.

Screen 1: Main API Access page on Google Console

Screen 2: Google Cloud Platform page

Main API Access page on Google Console Google Cloud Platform page

Solution 5 - Android

I faced the same issue because I selected a wrong project instead of the project for which the service account to be created. Please double check the project name in the drop-down at top of the page (after going to the link of Google Cloud Platform). By default the right project to be selected automatically. But if no project is selected beforehand and you are asked to select a project, then select the right project carefully. Otherwise the service account won't show up after completing the whole process.

Another thing to mention, although the project is supposed to be selected automatically, initially it didn't happen and I was given the available projects to select from. The project may appear in the recent projects, otherwise click the SELECT PROJECT link and find yourself.

Moreover when I additionally logged out and removed all the other Google accounts from the browser except the account which is used in Google Play Console. That time I was redirected to service account creation page with the correct project selected beforehand.

Attributions

All content for this solution is sourced from the original question on Stackoverflow.

The content on this page is licensed under the Attribution-ShareAlike 4.0 International (CC BY-SA 4.0) license.

Content TypeOriginal AuthorOriginal Content on Stackoverflow
QuestionGuyCView Question on Stackoverflow
Solution 1 - AndroidRunView Answer on Stackoverflow
Solution 2 - AndroidThang DangView Answer on Stackoverflow
Solution 3 - AndroidMy dream is unemployedView Answer on Stackoverflow
Solution 4 - AndroidharshView Answer on Stackoverflow
Solution 5 - Androidhafiz031View Answer on Stackoverflow