【Android Studio】アプリ名の変更方法!デバイスでの表示名
この記事からわかること
- Android Studio/Kotlinで開発したAndroidアプリのアプリ名を変更する方法
index
[open]
\ アプリをリリースしました /
友達や家族の誕生日をメモ!通知も届く-みんなの誕生日-
posted withアプリーチ
環境
- Android Studio:Flamingo
- Kotlin:1.8.20
Androidアプリのアプリ名を変更(設定)する方法
Android Studioを起動して「app」>「res」>「values」>「strings.xml」を開きます。その中のname="app_name"
属性でに指定している値がアプリ名として使用されるのでここを任意のものに変更すればOKです。
<resources>
<string name="app_name">アプリ名</string>
</resources>
正確にはリソースファイルで設定した値が「AndroidManifest.xml」のandroid:label
属性に渡されることでアプリ名に反映されています。
<?xml version="1.0" encoding="utf-8"?>
<manifest xmlns:android="http://schemas.android.com/apk/res/android"
xmlns:tools="http://schemas.android.com/tools">
<application
android:name=".App"
android:allowBackup="true"
android:dataExtractionRules="@xml/data_extraction_rules"
android:fullBackupContent="@xml/backup_rules"
android:icon="@mipmap/ic_launcher"
android:label="@string/app_name"
android:roundIcon="@mipmap/ic_launcher_round"
android:supportsRtl="true"
android:theme="@style/Theme.LoanList"
tools:targetApi="31">
まだまだ勉強中ですので間違っている点や至らぬ点がありましたら教えていただけると助かります。
ご覧いただきありがとうございました。