Logo Questions Linux Laravel Mysql Ubuntu Git Menu
 

Publish beta version on Android market

I want to publish a beta version of some app of mine on the android market and face the problem that I cannot upload an app with the same package-name twice - not even with a different certificate. But having 2 package-names for release and beta version makes a lot of trouble ( e.g. having to change references to the different location of R every time )

Is there a best-practice/good workaround for that problem?

like image 775
ligi Avatar asked Jun 30 '11 14:06

ligi


People also ask

How do I release the beta version of Google Play?

Browse to the Android App Testing - Google Play services page. Click the Become a Tester button. You're now a beta tester for Google Play services.


1 Answers

Yes call your package

com.you.app.beta

Fix all the bugs in this app. Then when you go live just copy the project refactor your package name (Eclipse CTRL+ALT+R on the item) update your manifest and re-release. The beta package is then not supported by you any more and you can even click unpublish, or release an update that shows an upgrade screen linking to the new package (i.e. new market url)

com.you.app

What's the problem?

like image 131
Blundell Avatar answered Oct 04 '22 21:10

Blundell