Home > Blockchain >  How do I obtain a domain name for the 'flutter create' cmd?
How do I obtain a domain name for the 'flutter create' cmd?

Time:06-25

I'm new to Flutter and I want to know how to get a domain name to create a project in Flutter. I know it is not essential to start but I want to save my future self from having to change it. Do I create a domain using google?

CodePudding user response:

I suggest you are talking about so called Application ID for Android / Bundle ID for iOS.

If you are creating app for some company I would suggest to call it according to it's name. For example if you are creating new app for Google and it's name gonna be Ab Cd I'd call it something like com.google.abcd.

For private purposes usually just use anything you like. I prefer using something like com.moria.app_name_goes_here.

CodePudding user response:

During a typical development cycle, you test an app using flutter run at the command line, or by using the Run and Debug options in your IDE. By default, Flutter builds a debug version of your app.

When you’re ready to prepare a release version of your app, for example to publish to the Google Play Store, this page can help. Before publishing, you might want to put some finishing touches on your app.

  • Related