HOW TO BROWSE AND COPY AND PROGRAM ANDROID PROGRAMS
but. If you use Eclipse, and all you want to do is first open the project you want to copy (DON "T FORGET TO OPEN THE PROJECT YOU NEED TO COPY"), then clone (copy / paste) your Android project in the explorer package window on the left side of Eclipse. Then Eclipse will ask for a new project name when pasting. Give him a new project name. Since the name and directory of the Eclipse project are independent of the name and package of the application, the following steps will help you on how to change the package names. Note: There are two types of package names.
1.To change the package names of src packages in the Src folder, follow these steps: First you need to create a new package: (src β β right-click β β new β β package).
Example of creating a package: com.new.name
Follow these steps to move the Java files from the old copied package to part A to the new package.
Select Java files in this old package
Right click on this java file
select the option "Refactoring"
select the "Move" option
Select your preferred package from the package list in the dialog box. Most likely, you need to select the new one you just created and click "OK"
2.To change the name of the application package (main package), follow these steps:
First right click your project
Then go to the Android Tools section
Then select Rename Application Package
Enter a new name in the dialog box and click OK.
Then it will show you in which part of your project the application name will be changed.
It will show you that the application name will be changed in the manifest and in most relevant Java files. Click OK
YOU ARE DONE in this part, but make sure you rebuild your project so that it takes effect.
To rebuild your project, go to "project" β> "Clear" β β select a project from projects
and click OK. Finally, you can start your new project.