1. Android Studio를 Android Project 모드로 열고 아래 경로에 파일을 만들고 내용을 작성한다. 디렉토리가 없다면 만들면 된다.

기본 언어 (영어)

/android/app/src/main/res/values/strings.xml

<?xml version="1.0" encoding="utf-8"?>
<resources>
    <string name="app_name">BeShop</string>
</resources>

 

한국어 전용

/android/app/src/main/res/values-ko/strings.xml

<?xml version="1.0" encoding="utf-8"?>
<resources>
    <string name="app_name">비숍</string>
</resources>

 

2. /android/app/src/main/AndroidManifest.xml 에서 label의 '고정된 문자'를 '@string/app_name'으로 변경

Before

<manifest xmlns:android="http://schemas.android.com/apk/res/android">
    <application
        android:label="BeShop"
        android:name="${applicationName}"
        android:icon="@mipmap/ic_launcher">
...
    </application>
...
</manifest>

After

<manifest xmlns:android="http://schemas.android.com/apk/res/android">
    <application
        android:label="@string/app_name"
        android:name="${applicationName}"
        android:icon="@mipmap/ic_launcher">
...
    </application>
...
</manifest>