I want to reference a string within another string so I only have to make changes in one place.
I don't want to handle this from Java. That is, I don't want to use %s and (getString(R.string.log_in_to_my_app), appName)
For instance, I only want to see "MyApp" in first string and a reference to it in the others:
<string name="app_name">MyApp</string>
<string name="log_in_to_my_app">Log In To MyApp</string>
<string name="login_with_my_app">Log in with MyApp</string>
So maybe something like:
<string name="app_name">MyApp</string>
<string name="log_in_to_my_app">Log In To @app_name</string>
<string name="login_with_my_app">Log in with @app_name</string>