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
Go to Release > Setup > Advanced settings. On the App Availability tab, select Unpublish.
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.
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.
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.
If you love us? You can donate to us via Paypal or buy me a coffee so we can maintain and grow! Thank you!
Donate Us With