-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
  • 110,372
  • 10
  • 146
  • 251
000000000000000000000
  • 1,467
  • 1
  • 19
  • 38

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
  • 5,070
  • 2
  • 28
  • 51
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,467
  • 1
  • 19
  • 38