In my project when application is get installed it naming the app name as {@string/welcome_msg} not {@string/app_name}. Is there any way to make the application name not same as Main Activity label?
Below is my manifest code:-
<application android:theme="@style/AppTheme" android:icon="@drawable/icon" android:label="@string/app_name">
<activity android:name=".StartActivity" android:label="@string/welcome_msg">
<intent-filter>
<action android:name="android.intent.action.MAIN" />
<category android:name="android.intent.category.LAUNCHER" />
</intent-filter>
</activity>
<activity android:name=".LoginActivity" android:label="@string/login">
<intent-filter>
<action android:name="com.gymup.project.LOGINACTIVITY" />
<category android:name="android.intent.category.DEFAULT" />
</intent-filter>
</activity>
</application>