I am simply making an demo application where I require to set different text for the label of launcher activity
& application name.
When I set the launcher activity lable name to Login
then it shows same application name. Is it possible to manually specify in the manifest application name.
This is how androidmanifest.xml looks but currently it is showing Login
as application name also.
<?xml version="1.0" encoding="utf-8"?>
<manifest xmlns:android="http://schemas.android.com/apk/res/android"
package="com.example" >
<application
android:allowBackup="true"
android:icon="@drawable/ic_launcher"
android:label="@string/app_name"
android:theme="@style/AppTheme" >
<activity
android:name=".LoginActivity"
android:label="@string/login_screen_title" >
<intent-filter>
<action android:name="android.intent.action.MAIN" />
<category android:name="android.intent.category.LAUNCHER" />
</intent-filter>
</activity>
</application>
</manifest>
strings.xml
<string name="app_name">Demo</string>
<!-- login screens strings -->
<string name="login_screen_title">LOGIN</string>
Thanks in advance.