This should be a simple fix. My problem is that my launcher name is the same as my first activity. @string/app_name is my actual application name that I want it to show, but it is showing my first activity "Drafts" for the launcher. If I take out the @string/activity_drafts then the Launcher is correct, but then the first activity is my app_name which is not the behaviour I am looking for. I just want two seperate names for the launcher and the first activity's title and I'm not really sure what is going on here.
Manifest.xml
<application android:name="com.jordan.dictation.Dictation2Go"
android:allowBackup="true"
android:hardwareAccelerated="true"
android:icon="@drawable/dp_launcher2"
android:logo="@drawable/dp_white_logo"
android:label="@string/app_name"
android:theme="@style/MyTheme">
<activity
android:name="com.jordan.dictation.Draft_Activity"
android:screenOrientation="portrait"
android:label="@string/activity_drafts"
>
<intent-filter>
<action android:name="android.intent.action.MAIN" />
<category android:name="android.intent.category.LAUNCHER" />
</intent-filter>
</activity>