Android app name localization in Unity 5.4

Hello!
I would like to localize the app names with Unity 5.4. I see a lot of tutorials but they are not work these methods is deprecated in Unity 5.4.

I would like the following:
In english the app name would be Hello
in Spanish would be Hola etc

How can I do it?
I tried to place Assets/Plugins/Android/res/values values-es etc and strings.xml in all but none of them works.
I get the following warning message every time:

OBSOLETE - Providing Android resources in Assets/Plugins/Android/res is deprecated, please move your resources to an Android Library. See “Building Plugins for Android” section of the Manual.
UnityEditor.HostView:OnGUI()

while more likely than not there are better ways, using Application.systemLanguage to get the language that is being used, then loading up a textAsset to set all the text in the app to the correct language should work.