I know this question has been asked before but in all of them the answer is to set it from onCreate method of activity. I DO NOT want to do this in my onCreate method, so I did this to my manifest file, but to no avail:-
<application
android:allowBackup="true"
android:icon="@drawable/ic_launcher_screen"
android:label="@string/app_name"
android:theme="@android:style/Theme.Holo.Light"
>
<activity
android:name="com.iws.unify.HomeScreen"
android:label="@string/nullstring"
android:icon="@drawable/ic_launcher"
>
<intent-filter>
<action android:name="android.intent.action.MAIN" />
<category android:name="android.intent.category.LAUNCHER" />
</intent-filter>
</activity>
For some reason whatever icon/label I set in activity overrides that in application tag which is so annoying. Please help.