I do have an existing project.
I want to change its
Application name
Project name
Package name
Icon
Is it possible to set them up again? I use Eclipse for IDE.
For changing:
App Name:
Go to res->values->string.xml
-> Change appname
App Icon:
Go to Android manifest -> android:icon = "@drawble/yourIcon"
Package Name:
In Eclipse, Right click on your project Android Tools->Rename Application Packege
. For detail follow this LINK
Project Name:
Select your project, go to File Menu -> Rename or Press F2
.
1-The app name is stored in string.xml file in value
folder. You can change the xml file.
2-Just right click on the project click refactor -> rename
.
3-How to change package name of an Android Application
4- Your Icon is sotred in res -> drawable
folder in your project.
you can do it in Application tag file manifest
android:icon="your icon"
android:label="application name"
for change package you can right click on package and refactor->rename
If you're using Eclipse, the easiest is to create a new project and copy over all the relevant sources and resources. (Leave the old icons behind if you're creating new ones.) I've found that trying to make those changes to an existing project tends to leave several loose ends that are hard to track down.