Skip to content

[FLUTTER] A package which you can update app package (bundleId for iOS), app name and app icon.

License

Notifications You must be signed in to change notification settings

devibrahimkarahan/flutter_package_name_icon

Folders and files

NameName
Last commit message
Last commit date

Latest commit

 

History

14 Commits
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 

Repository files navigation

flutter_package_name_icon

A package which you can update app package (bundleId), app name and app icon.

** This package use flutter_launcher_icons (created by Mark O'Sullivan and Franz Silva) and use flutter_native_splash (created by Henrique Arthur) packages.

🆕 What's New


🧾 Guide

1. Setup the config file

Add your Flutter app name, app package, app icon configuration to your pubspec.yaml or create a new config file called flutter_package_name_icon.yaml.

dev_dependencies: 
  flutter_package_name_icon:
    git: git://github.com/devibrahimkarahan/flutter_package_name_icon.git

flutter_package_name_icon:
  name: "App name"
  package: "com.your.package"
  flutter_icons:
    image_path: "assets/my_launcher_icon.png"
    android: true
    ios: true

For more attributes of flutter_icons: flutter_launcher_icons

If you name your configuration file something other than flutter_package_name_icon.yaml or pubspec.yaml you will need to specify the name of the file when running the package.

flutter pub get
flutter pub run flutter_package_name_icon:main -f <your config file name here>

Note: If you are not using the existing pubspec.yaml ensure that your config file is located in the same directory as it.

2. Run the package

flutter pub get
flutter pub run flutter_package_name_icon:main

The package will replace necessary fields on iOS and Android folders what you define.

🔎 Attributes

Shown below is the full list of attributes which you can specify within your Flutter Launcher name configuration.

  • name: New name of application
  • package: New packageName/bundleId of application
  • flutter_icons: Application icons configuration, See details

About

[FLUTTER] A package which you can update app package (bundleId for iOS), app name and app icon.

Resources

License

Stars

Watchers

Forks

Releases

No releases published

Packages

No packages published

Languages