Cryptomask Docs
  • CRYPTOMASK SERVER
    • Installing Database
    • Installing Cryptomask Server
  • Cryptomask Wallet
    • Quickstart
    • Changing App Name
    • Changing App ID
    • Changing App Icon
    • Customize and Extend
    • Building and Releasing
Powered by GitBook
On this page
  1. Cryptomask Wallet

Changing App Name

To change the application name of a Application, you can use the rename package, which simplifies the process significantly. This package allows you to update your app's display name across both Android and iOS platforms with minimal effort. It automates the necessary changes in the configuration files, ensuring a smooth transition without the need for manual edits. In this guide, we will walk through the steps to effectively rename your Flutter application using the rename package.

  • Activate plugin using following command in the terminal in VSCode.

flutter pub global activate rename
  • Run the following command to rename the application for both Android and iOS

rename setAppName --targets ios,android --value "<YOUR_APP_NAME>"

If you face any error while running above command. Try prefixing 'flutter' before the command like below.

flutter rename setAppName --targets ios,android --value "<YOUR_APP_NAME>"

This is rename application name, However in order to rename application name reference inside the app you need to change the value for the APP_NAME variable in the .env file.

PreviousQuickstartNextChanging App ID

Last updated 7 months ago