DigitalHR (Flutter)
  • Welcome
  • Flutter Setup
    • Installing Android Studio
    • Installing Flutter SDK
    • Import Project
    • Updating local.properties file
    • Configuring Firebase
    • Change Application Package Name
    • Change App Name
    • Server URL
    • App Logo
    • Change App Colors
    • Strings
    • Image Assets
    • App Font
  • Notification Sound
  • Publishing the App
    • Build and release android app
    • Build and release an iOS app
  • Admin Panel
    • Requirements
    • Database setup
    • Import and deploy
    • Change Time Zone
    • Setup cron job
    • Setup Firebase
  • Rate and support
  • Change Log
    • Version 8.0 Backend
    • Version 7.0 Flutter
  • Migrate from older version
    • Backend Migration
      • Roles and Permission
      • Version 10.0 to 11.0
    • Flutter Migration
      • Version 7.0 to 8.0
  • FAQ
Powered by GitBook
On this page
  • Android
  • iOS
  1. Flutter Setup

Change App Name

PreviousChange Application Package NameNextServer URL

Last updated 2 years ago

Android

Open the file AndroidManifest.xml under android--> app --> src --> main. Enter the preferred app name in the label under application tag.

<application
        android:label="Enter Your Desired Name Here" 
        android:name="${applicationName}"
        android:requestLegacyExternalStorage="true"
        android:icon="@mipmap/launcher_icon">

iOS

For iOS, change the name for CFBundleDisplayName as shown in image below.