Logo Questions Linux Laravel Mysql Ubuntu Git Menu
 

how to Delete published application from my android market account?

I have published the apk files at android market site with a bug. But i want to remove that application from the android market.

How to Delete a published application from my android market account?

Below Scenario’s tried for delete application: * From the application page click the upgrade>>click the delete button bottom of the page. * while clicking delete it's displaying the below error message

"An unexpected error occurred. Please try again later"

can anyone have the solution for this issue?

Regards, Jeyavel N

like image 564
Jeyavel Avatar asked Feb 02 '10 10:02

Jeyavel


People also ask

Can we delete published app on Play Store?

Go to Release > Setup > Advanced settings. On the App Availability tab, select Unpublish.

How can an app be removed from the Play Store?

Android apps do get pulled from the Play Store for a variety of reasons. For example, the developer could pull the app down, or Google could remove the app for violating one of its policies.


2 Answers

There is no delete of your application in the market. What you can do is to unpublish an application (what I just did).

What the OP described is just the delete function for an update you just uploaded. It does not delete or unpublish your application. It just delete the uploaded file of your upgrade.

To make it short: A published app can not be deleted, only unpublished.

like image 81
WarrenFaith Avatar answered Dec 09 '22 02:12

WarrenFaith


Your published apk cannot be deleted it will be deactivated.

for that you should:

1) Unpublish app from market

2) after that in you Latest manifest add

<manifest xmlns:android="http://schemas.android.com/apk/res/android"
android:versionCode="1"
android:versionName="1.0"
. . .
</manifest>

You will need following:

<manifest xmlns:android="http://schemas.android.com/apk/res/android"
android:versionCode="2"
android:versionName="1.1"
. . .
</manifest>

3) And sign again your apk from eclipse->Android tools->Export signed application package-> sign it->

4) Upload that Apk to market.

hope it will helps.

like image 25
Siten Avatar answered Dec 09 '22 04:12

Siten