Logo Questions Linux Laravel Mysql Ubuntu Git Menu
 

How to delete the published app from developer console android

Tags:

android

I want to remove the published app from play store.So I have unpublished it but it is still present in developer console.How to remove it.

Any help would be greatly appreciated:)

like image 226
Kirthiga Avatar asked Sep 07 '13 05:09

Kirthiga


People also ask

How do I delete a published app from console?

Open Play Console. Select an app. Go to Release > Setup > Advanced settings. On the App Availability tab, select Unpublish.

How do I delete apps from Google Developer Console?

Go to https://market.android.com/publish/Home, and log in to your Google Play account. Click on the application you want to delete. Click on the Store Presence menu, and click the “Pricing and Distribution” item. Click Unpublish.

How do I uninstall a developer app on Android?

It's in the "Device" section. Scroll down and tap the app you want to deleted. Tap UNINSTALL. If there is no UNINSTALL button, the app is a default or system app that can't be deleted without rooting your device.


2 Answers

No, you can unpublish but once your application has been live on the market you cannot delete it.

(Each package name is unique and Google remembers all package names anyway so you could use this a reminder)

The "Delete" button only works for unpublished version of your app. Once you published your app or a particular version of it, you cannot delete it from the Market. However, you can still "unpublish" it. The "Delete" button is only handy when you uploaded a new version, then you realized you goofed and want to remove that new version before publishing it.

like image 129
Zar E Ahmer Avatar answered Nov 10 '22 00:11

Zar E Ahmer


You can delete an app anytime before it is published.

After it has been published, it "owns" its unique packagename forever in the Google PlayStore app naming hierarchy:

com.yourdomain.yourapp

There is no "deleting" this packagename after publication. That would cause mayhem.

Google Analytics, for example needs this permanent unique id. Hostile developers could take over your packagename by forcing you to delete it with bad review attacks.

The package name itself is not really a public-facing asset. If all you want to do is "reboot" your app (ie start again with zero downloads and reviews) then just unpublish (retire) the old packagename and republish the apk under a new packagename.

The right way to publish your app is using the alpha and beta streams in the dev console which do not retain reviews.

The only problem with this is the rule about once an app (package) is priced as free, it remains forever free, meaning you have to republish under a new package name to price a free beta.

Paid betas are only possible if you already have successful apps.

PlayStore publication policies are in constant flux (there is now a manual review policy). You may wish to take your concerns to them directly - they do respond.

I am sure every developer wants to delete and republish an app after finding out that it wont run on device X**, because device X manufacturer has tweaked Android, causing device X owners to give the app unfair reviews.

This is also a way to avoid giving people free upgrades to your apps forever, which is not realistic, esp. given piracy stats. Owners often reboot to start fresh after a major upgrade.

You may want to adopt a packagename with a major version codename baked in, like the big boys do it (mountainlion, xenial, marshmallow, etc)

com.yourdomain.yourapp.codename

** X is usually Samsung

like image 37
Dominic Cerisano Avatar answered Nov 10 '22 00:11

Dominic Cerisano