When I install my app from Google Play, and it goes on my home screen, it's "label" is the value of @string/slogan
, but in the apps menu, it's the value of @string/app_name
.
minSdkVersion
is 14.
My Manifest:
<?xml version="1.0" encoding="utf-8"?>
<manifest xmlns:android="http://schemas.android.com/apk/res/android"
package="com.dabestappsever.bigtext"
android:installLocation="auto">
<application
android:allowBackup="true"
android:theme="@android:style/Theme.Holo.Light.DarkActionBar"
android:icon="@drawable/logo">
<activity android:name="com.dabestappsever.bigtext.MainActivity"
android:label="@string/slogan">
<intent-filter android:label="@string/app_name">
<action android:name="android.intent.action.MAIN" />
<category android:name="android.intent.category.LAUNCHER" />
</intent-filter>
</activity>
<activity android:name="com.dabestappsever.bigtext.Result"
android:theme="@android:style/Theme.Holo.Light.NoActionBar">
</activity>
</application>
</manifest>
I'm not sure why...
Right now, I'm going with Ferran Negre's solution, but I wonder if there's a way to fix this without Java.