Logo Questions Linux Laravel Mysql Ubuntu Git Menu
 

Development and Production versions of the same app on a single device

Tags:

android

Please advice how to come over the problem of need to have two installs of the same application on one device? Need one for developing and the one which is in production for testing and using. What is the easy way of doing so? I tried to change package name manually but this lead to pain when merging.

like image 732
Eugene Avatar asked Aug 06 '12 13:08

Eugene


People also ask

Can I have two versions of the same app?

To make it clear, the feature to make multiple copies of an app is only available on certain Android devices. You should find this feature on Samsung, Xiaomi, and OnePlus phones. If your phone doesn't have this feature, you can still run multiple instances of your Android apps using a third-party app.

What is production version of an app?

RELATED APPS. More. A production version is the link between the bill of material (BOM) of a product and the process of routing. It determines which BOM relates to the relevant routing to produce a material or plan a material. There may be different production versions based on the lot sizes and validity dates.

How do I run two versions of apps?

Here is how you can run multiple instances of an app using Parallel Space: Open Parallel Space and tap on the apps you want to clone. Select Add to Parallel Space. Once the apps are in the Parallel Space, tap on the one you want to run.

Can you develop for Android and iOS at the same time?

What Is Cross-Platform Development? The term “cross-platform mobile app development” or “hybrid mobile app development” speaks for itself: this is an approach that allows developers to build a mobile solution that is simultaneously compatible with several operating systems and platforms (Android, iOS, Windows).


1 Answers

You can easily change the packagename if you use the ADT v 20. Just right click on the project and go to Rename Application Package under android tools. Eclipse will handle every change for you.

like image 156
Ahmad Avatar answered Oct 27 '22 00:10

Ahmad