I have tried changing the text of the Launcher
entry of my Android
app, but it's just not working. People recommend changing from AndroidManifest.xml
but it's not working for me.
AndroidManifest.xml
<?xml version="1.0" encoding="utf-8"?>
<manifest xmlns:android="http://schemas.android.com/apk/res/android"
package="org.reliefdev.reliefdevedworking">
<application
android:allowBackup="true"
android:icon="@mipmap/ic_launcher"
android:label="@string/app_name"
android:roundIcon="@mipmap/ic_launcher_round"
android:supportsRtl="true"
android:theme="@style/ReliefSignatureTheme">
<activity
android:name=".WelcomeActivity"
android:label="@string/welcome_action_bar">
<intent-filter>
<action android:name="android.intent.action.MAIN" />
<category android:name="android.intent.category.LAUNCHER" />
</intent-filter>
</activity>
<activity
android:name=".LoginReliefAccountActivity"
android:label="@string/login_action_bar" />
<activity android:name=".CreateReliefAccountActivity"></activity>
</application>
</manifest>
strings.xml
<resources>
<string name="app_name">Relief</string>
<string name="button_started">Get Started</string>
<string name="welcome_action_bar">Welcome</string>
<string name="welcome_desc">Welcome to Relief Donate. Save and help lives, all with the touch of a button.\n\nYour donation counts.</string>
<string name="welcome_title">Oh hello!</string>
<string name="login_action_bar">Login</string>
<string name="login_title">Login to your Relief Account</string>
<string name="login_desc">So we can keep track of your donations \n(and honorable mentions!)</string>
<string name="signup_edittext_uname_hint">kindsoul2113 (username)</string>
<string name="signup_edittext_pwd_hint">password (password - please don\'t use "password" as your password)</string>
<string name="btn_create_account_text">Sign Up</string>
<string name="btn_login_text">Log In</string>
<string name="or">OR...</string>
</resources>
application entry in the launcher