Logo Questions Linux Laravel Mysql Ubuntu Git Menu
 

Remove my Dev-Account from Google Play Console Projects [closed]

I have a Google Developer account for developing android apps and my account is linked to some projects that I don't want to be linked with anymore. I asked those companies to remove me as a developer from their Google Play account but they don't do it. I just want to be removed from their project because I have nothing to do with it anymore so why should I have access. It is just a weak point.

I know that the account owner of the customers Google Play account can remove my account from the project but there must be a way from my side as well to say -> I don't want to be part of it anymore and unlink from this project?!

like image 307
Emanuel Avatar asked Jan 31 '26 07:01

Emanuel


1 Answers

I found a solution for this situation, and even for Terminated Developer Account.

List users

  1. Go to Google Play Developer API doc https://developers.google.com/android-publisher/api-ref/rest/v3/users/list .
  2. Open APIs Explorer on the right of page.
  3. Fill the parent field with format developers/<19 numbers> which can be found on the url when you open the Google Play Console.
  4. Make sure the Google OAuth 2.0 is checked.
  5. Click Execute button and finish the OAuth procedure.
  6. Users will list below. enter image description here enter image description here enter image description here

Delete users

  1. Go to Google Play Developer API doc https://developers.google.com/android-publisher/api-ref/rest/v3/users/delete .
  2. Open APIs Explorer on the right of page.
  3. Fill the name filed with format developers/<19 numbers>/users/<your dev account email> which can be found in user list in List users step.
  4. Make sure the Google OAuth 2.0 is checked.
  5. Click Execute button and finish the OAuth procedure.
  6. Returns HTTP 204 means success. enter image description here
like image 97
London Alexander Avatar answered Feb 01 '26 20:02

London Alexander