I imported the same project twice in Eclipse and, changed the name and renamed the package (Refactor). Why does it not install as a seperate app then?
I checked the Manifest file and it was also updated to the new package name.
I imported the same project twice in Eclipse and, changed the name and renamed the package (Refactor). Why does it not install as a seperate app then?
I checked the Manifest file and it was also updated to the new package name.
Check if the Packagename in AndroidManifest has changed. That is the essential declaration.
<manifest xmlns:android="http://schemas.android.com/apk/res/android"
package="new.package.name"
Using Refactor (Rightclick on the project and package) to rename the project and the package is the right approach, but I also had to rename the package name in the Manifest (it somehow didn't update it automatically)