need help changing my package name in eclipse

Viewed 26348

so my package name is com.soundboard right now.

obviously this name is taken...I am having trouble changing it throughout the package name.

I checked a few posts here and did the refactor > rename and changed it to a more original name. When I tried to upload the new .apk I got the same message that the package name has been taken.

When I change the package="com.soundboard" line in the manifest to something else I get errors all throughout all the other pages (.javas) when I save.

7 Answers

Got the same problem. I forgot to redefine package in Manifest file

Also remember to change package in your *.java files (on top of txt file)

Related