I have a fully working project (lets say its called "mygame") on disk which contains multiple activities. The activity which gets called first is called "launcher". I wish for the project to be called "com.mycompany.mygame", but when I do an import project in eclipse and select the root directory of my project, a dialog appears stating that the project that is located at this directory is "com.mycompany.mygame.launcher" with no way of changing it. My question is, what is eclipse using to determine that my project has the name "com.mycompany.mygame.launcher"? Is it something in the manifest?
|
I think the eclipse takes the class name which extends Activity. Because when u extend any other package like the Fragment etc., it won't create the by default Launcher for that particular class. So whenever the Class name with manifest point to launcher will get imported along Or it will attach the class name. with the package name |
|||
|
|
|
Did you mean the project name changed? If that, you can check the |
|||||||||||
|
|
in eclipse, right click your project Android Tools -> Rename Application Package , change the name to com.mycompany.mygame |
|||||||||||||||
|
|
Similar to your problem, when I try For those who commented and were confused about the question, what is happening is that Eclipse imports the project as the name of the first activity (including the namespace). It imports the project as com.company.app_name.first_activity_in_the_manifest I have been having this problem for a while. I found the solution for my project. Because it is a git repo, I have to do Then it imports correctly, and doesn't have the side effect of some solutions mentioned here, importing existing code into a new project (which would probably remove my link to the git repo). |
||||
|
|
|
In your manifest file the name attribute in manifest tag will show the package name.Also the package explorer view in eclipse will show the package name.For example if your pkg name is com.cmpny.game,then your src folder will contain src>com>cmpny>game> foldersa and inside it will be your code saved. |
|||
|
|
|
Why are you using eclipse 'import existing project to workspace' feature? You should use 'New Android Project -> Create Project From Existing Source' feature.(I don't know how these options exactly appear in your eclipse, so you'l have to find them) In this way you can rename it to anything. Your Second option could be: Import existing project to workspace (as you are doing already). Leave the name of the project as it is, then after completing the import process, you can rename the project to whatever you want. |
|||
|
|
|
I think it is because of directory structure followed for all applications of same types, as all the application contains some files/folder on the root folder that is the name of our application e-g android project contains files like |
|||
|
|
|
In every Project there is file called
|
|||
|
|
|
In the projects directory there is .project file created by eclipse ! when we import the project is searches for this file and collects the project related information from this file. That's how its done. If u delete this file just for the purpose of checking eclipse will no more recognize that directory as a project ! |
|||
|
|
|
The name ADT displays in the Package Explorer may not be the name in the .project file. To change this, right click on the name -> Refactor -> Rename. Change the name with "Update References" checked. Make sure the name you want is unique to your Package Explorer listing. |
|||
|
|

File - Import.. - General - Existing Projects into Workspaceimport your project which will pick up <name> from .project as default project name. the con is this Eclipse generated .classpath and .project may not work when cross different OS or Eclipse version. – yorkw Sep 3 '12 at 22:04