fix wrong display name of built-in icon set in non-debug builds

This commit is contained in:
Philipp Crocoll 2015-12-28 07:25:09 +01:00
parent 959e269b9a
commit 272b7e6aad
2 changed files with 2 additions and 2 deletions

View File

@ -64,7 +64,7 @@ namespace keepass2android
public static class AppNames
{
#if DEBUG
public const string AppName = "Keepass2Android Debug";
public const string AppName = "@string/app_name_debug";
#else
public const string AppName = "@string/app_name";
#endif

View File

@ -166,7 +166,7 @@ namespace keepass2android
_iconSets.Add(new IconSet()
{
DisplayName = AppNames.AppName,
DisplayName = Context.GetString(AppNames.AppNameResource),
PackageName = Context.PackageName
});