i have created a sample projet in android named ‘myProject’. But while i installing to this my phone name in the phone like’com.project.myProject’. Any idea how to rename this ?
i have created a sample projet in android named ‘myProject’. But while i installing
Share
Open your AndroidManifest.xml.
The attribute to set your application name is
android:label.You can use it in 2 nodes:
<application>. It defines the name of your application in the “application” section of the settings in Android.<activity>. Define the name where you have the LAUNCHER category to set application title in drawer.Please note that Eclipse use
@string/app_nameby default for those values.