There where some similar questions around here but my problem is a bit different. I use a label for an activity to be displayed and the system automatically uses that text as the app name which is seen under the app icon in the launcher. BUT I have already set the app name, as u can see in that manifest code:
<application
android:icon="@drawable/ic_launcher"
android:label="@string/app_name" >
<activity
android:name=".OneActivity"
android:label="Project 51" >
<intent-filter>
<action android:name="android.intent.action.MAIN" />
<category android:name="android.intent.category.LAUNCHER" />
</intent-filter>
</activity>
what am I doing wrong?