My Android app is not displaying the application name \"app_name\", instead its displaying the activity name \"title\". This is from my manifest file;
<
This question explained the reason for this to me:
Naming my application in android
The launcher actually shows android:label and android:icon for activity(ies) that declare:
<intent-filter>
<action android:name="android.intent.action.MAIN" />
<category android:name="android.intent.category.LAUNCHER" />
</intent-filter>
so application label is of no use.