I am facing very strange issue with android manifest file.
I have manifest something like this.....
<application android:icon="@drawable/icon" android:label="TestApplication">
<activity android:name=".Test" android:label="Test" >
<intent-filter>
<action android:name="android.intent.action.MAIN" />
<category android:name="android.intent.category.LAUNCHER" />
</intent-filter>
</activity>
</application>
Then in that case the name of my application is "TestApplication" which should be appear on the device menu with icon. The name of launcher activity is "Test" which should be appear on the Title Bar when application launches.
But the problem is the application is showing the name "Test" as application name with icon on menu.....but it must show "TestApplication" as i have set the application name.
I am so stuck that why it is showing the launcher activity name as application name however i have specified the application name explicitly.....
Please resolve the issue
Thanks
Nikhil