How to change - translate app's name according to devices's language

Here’s a quick guide on how to change - translate app’s name according to devices’s language using APK Studio Editor

  1. Decompile the APK

  1. Go to Resources - > values → strings

  1. Find the language you want for example Greek, right click and choose edit resource

  1. Add <string name="app_name">translated app’s name</string> and save changes

  1. Do the same for all languages that you need . Do not forget to add also to the default string otherwise it won’t work

  1. Then open the Manifest: AndroidManifest.xml

  1. Edit the Manifest

  1. Change app tag to android:label="@string/app_name

  1. Recompile the APK and you are ready !

Hope you like it :slight_smile:

18 Likes

Superb, told you it was easy :smiley: :smile:

4 Likes