-1

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.

Jon Hanna
  • 106,895
  • 9
  • 141
  • 243
000000000000000000000
  • 1,387
  • 1
  • 17
  • 33

2 Answers2

1

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"
Thommy
  • 4,729
  • 2
  • 25
  • 45
0

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)

000000000000000000000
  • 1,387
  • 1
  • 17
  • 33