I want to create a new app by modifying code of an existing app's source code. So I did the following from eclipse:
- exported the code of the old app "app1" to a file system.
- created a new Java project "app2", and imported the code that was exported earlier.
- modified strings.xml, and renamed the app_name as "app2"
- made other edits to app2's code, for a new feature.
- ran app2 on the mobile device (connected to the PC)
Now app2 is working correctly, and its name is also seen as "app2". But I see that when I loaded the code onto the mobile device, it has replaced the app1 that was previously installed, ie the app1 is no more visible on the device.
So my question is: what other changes do I need to make (apart from the strings.xml:app_name) to make a completely new app? ie, I want both app1 and app2 to exist on the device.