Steps Before Publishing
Learn about the steps that need to be done before publishing for the first time.
We'll cover the following
In this lesson, we’ll look into the steps that we need to do before publishing our app to the Play Store for the first time.
App icon
The default icon of our app has the Flutter logo. We may want to change the app’s logo, and for that, we’ll have to install a Flutter package. Run the command below to install the package:
flutter pub add flutter_launcher_icons
After installing, run the command below:
flutter pub get
Now we have to add our logo image in the assets folder and specify the path in the flutter_icons:
property of pubspec.yaml
. See the code below for reference:
Get hands-on with 1400+ tech skills courses.