Last Updated: 2025-02-28

In this tutorial, you will be going through all the steps necessary to build, sign and deploy a Flutter app to the Apple App Store.

What you'll build

What you'll learn

What you'll need

If you don't yet have an account with a Git provider, you can create a new one with GitHub here.

If you don't yet have a PAID Apple Developer account, you can begin the process of creating a new one here. Note that you will need to provide Apple with several pieces of information and pay $99 USD per year for your account (or the equivalent amount in your country, as of the time of this writing). Once you get to the end of the process and see a screen like this:

screenshot of Apple developer site showing confirmation to go ahead with purchase of Apple Developer Program yearly membership

you are almost finished with the process.

Apple splits the tools for managing developer and app information between the Apple Developer website and the App Store Connect website. These sites can be confusing for newcomers due to their complex processes and interfaces. To simplify things, this tutorial will use Codemagic's features to minimize interactions with both sites.

In order to publish your app to the App Store, you will first need an app!

Before we begin, make sure you are using the latest current version of the Flutter SDK stable channel:

flutter --version
Flutter 3.10.0 • channel stable • https://github.com/flutter/flutter.git
Framework • revision 84a1e904f4 (7 days ago) • 2023-05-09 07:41:44 -0700
Engine • revision d44b5a94c9
Tools • Dart 3.0.0 • DevTools 2.23.1

The specific versions above are not important. What matters is that the output includes the text: • channel stable •, as shown in the example.

For this tutorial, we will use a Flutter app based on the default "Counter app" that is generated when you run the Flutter create command.

You can create the app now by running:

flutter create classic_counter

Naming your app

An essential step in creating our app, which will be necessary for publishing it on TestFlight and the App Store, is creating a unique identifier for it. On Apple platforms, this identifier is the Bundle ID.

According to the Flutter documentation, you first need to go to the Apple Developer site, log in, and start creating a new app identifier:

screenshot of certificates, identifiers & profiles screen of Apple developer website

Subsequent steps in the process will ask you to choose the identifier type:

screenshot of register new identifier from Apple developer website

and finally enter your chosen Bundle ID:

screenshot of register an app section from Apple developer website

Once you have completed all the steps to create the app identifier, you should see it listed under your Apple Developer account under the Identifiers section:

screenshot of certificates, identifiers & profiles screen of Apple developer website

Now we need to follow the next process of creating an application record on App Store Connect.

First select My Apps:

screenshot of My apps section of Apple appstore connect website

Then click on the "+" icon to add a new entry:

screenshot of arrow pointing to plus button of My apps section of Apple appstore connect website

Select New App from the drop down and then fill in the form shown:

screenshot of new app form of Apple appstore connect website

Note that in the Bundle ID drop down you should see and be able to select the Bundle ID you created previously in the Apple Developer website.

You now need to update your Flutter app code to use the Bundle ID you have chosen. The easiest way to do this is by using Xcode. You can follow the instructions for this in the Flutter documentation.

Now that you have updated your app, you need to add it to a Git repository and push it to a Git hosting provider (e.g., GitHub). You have to create a new repository with the hosting provider first:

cd classic_counter
git init .
git commit -a -m "app scaffold"
git add remote origin <git-hosting-provider-url>
git push origin main

You will start by building your app for iOS without code signing on Codemagic.

To set up your app on Codemagic, you first need to create the project by connecting a Git hosting provider (e.g., GitHub):

screenshot of connect repository screen of Codemagic website

Then select a repository and the Flutter project type:

screenshot of setup application screen of Codemagic website

You then need to configure a few settings for your new app project on Codemagic. First check that only iOS is selected as the platform:

enlarged screenshot of Build for platforms config section of Codemagic website

Then that the versions are set to channel Stable for Flutter, Latest for Xcode and default for Cocoapods:

enlarged screenshot of tool versions config section of Codemagic website

And that the build mode is set to Debug:

enlarged screenshot of Mode config section of Codemagic website

Once you have made those changes to the settings, click "Save changes" button in the top right hand corner:

enlarged screenshot of tool Save button on Codemagic website

and then you can start your first build by clicking on the "Start your first build" button:

enlarged screenshot of tool 'start your first build' button on Codemagic website

After your first build, this button will change to "Start new build":

enlarged screenshot of tool 'start new build' button on Codemagic website

Once your build successfully completes, you will have an unsigned artifact that you will be able to run only on the iOS Simulator.

Codemagic supports both automatic and manual processes to sign your app. In this tutorial, we will only cover automatic code signing, as it is by far the easier process, especially for newcomers to iOS code signing.

What is code signing?

Before diving into the technical details, it's important to understand what code signing is and why it's essential for app development.

In general terms, code signing is a cryptographic process by which certificates, made up of corresponding public and private keys, are used to create a "hash" value of some data (e.g., the executable code and resources that make up an app). The private key is used in such a way that the public key can later confirm that only someone possessing the private key could have created (calculated) that hash value for the given app.

Code Signing for iOS Apps

In the context of Apple and iOS apps, code signing ensures that only apps explicitly authorized by Apple can run on Apple platforms, such as iOS devices. This is achieved through the use of Provisioning Profiles.

Provisioning Profiles are files that can only be created through the Apple Developer website. They specify:

These profiles store information such as the certificate used to sign the app, the app's unique identifier, and other metadata, including the unique IDs of the devices on which the app is allowed to run.

Why Only Apple Can Create Provisioning Profiles

Only the Apple Developer website can create provisioning profiles because they are signed by Apple using a certificate they exclusively hold. This is what ensures the security and authenticity of apps on Apple devices.

Provisioning Profiles in Detail

The Provisioning Profile is central to the code signing process on iOS (and all Apple platforms). More detailed information about them can be found in the Apple technote on the subject.

It's important to note that each app may have multiple provisioning profiles:

How Codemagic Simplifies Code Signing

Fortunately, for this tutorial, most of the complexities of obtaining, managing, and using provisioning profiles can be handled by Codemagic through the App Store Connect API.

However, to allow Codemagic to manage this on behalf of your app, you first need to obtain an App Store Connect API key. The process to do so is as follows:

  1. Log in to App Store Connect and navigate to Users and Access > Integrations.
  2. Click on the "+" sign on the Team Keys tab to generate a new API key.
  3. Enter a name for the key and select an access level.

We recommend choosing App Manager, as the Developer role does not have the required permissions to upload to the store. Read more about Apple Developer Program role permissions here.

  1. Click "Generate". Once the key is generated, it will be added to the list of active keys.
  2. Click "Download API Key" to save the private key for later use. Note: The key can only be downloaded once.

This process is also covered in this section of the Codemagic documentation.

Once you have obtained an API key, keep it along with the Issuer ID and Key ID, which can be found on the App Store Connect website. You will need them in the next step.:

screenshot of App Store Connect API section of apple appstore connect website

Then, add them to your Team/Account section in the Codemagic web app:

screenshot of tool Teams section of the Codemagic website

enlarged screenshot of tool Teams config section on Codemagic website

If you prefer to a see a demonstration, the above process of how to obtain and use the API key is covered in this video.

Registering your test devices

You will want to test your app on at least one actual iOS device, so you will need to register that device on your Apple Developer account prior to building your first signed iOS artifact.

To add your devices to your profile, you will need to go to the Devices section of the Apple Developer web console and click on the + button:

enlarged screenshot of Devices plus button from Certificates, Indentifiers & Profiles section of Apple developer website

Specific instructions on how to obtain the required UUID of each of your iOS devices can be found in the Apple developer documentation.

Now, moving back to the Codemagic web interface: in your app workflow editor configuration, you will need to go to the Distribution section and make sure that the code signing method is set to Automatic and that the App Store Connect API key and Bundle Identifier match those that you set up in the previous parts of this step:

enlarged screenshot with red arrow pointing to 'Select code  signing method' on Codemagic website

Now that you have done all the required preparation, you can start a new build of your app on Codemagic using the start new build button as you did previously. Once the build is successful, you will have a signed artifact that you can download and install on your iOS device.

screenshot of Codemagic website with red arrow pointing to link on the page to generated IPA file link

screenshot of Codemagic website with red arrow pointing to link on the page to generated IPA file link

If the build fails because of an error message like this, it means you have too many existing distribution certificates on your account. You can remove the ones that are not used or choose manual code signing and upload your existing profiles and distribution certificates following the docs here

Now that you have a working signed build, the next step is to upload it to TestFlight to make it more easily available to others to install and test your app.

To set up uploading to TestFlight you will need to again go to the Distribution section of your apps workflow editor in Codemagic. This time open the App Store Connect instead of the iOS code signing subsection:

screenshot with red arrow pointing to App Store Connect [enabled] section of Codemagic website

In that section you will need to ensure that both the Enable App Store Connect publishing and Submit to TestFlight beta review items are enabled:

screenshot with red arrow pointing to 'Enable App Store Connect publishing' checkbox and another red arrow pointing to 'Submit to Testflight beta review` checkbox of the Codemagic website

Once the build workflow completes successfully, you should see your app build listed under the TestFlight tab on the App Store Connect website:

screenshot of the Apple App store connect website showing the app listed in the iOS builds section of the website

On your iOS device, open the App Store and download the TestFlight app to install your app.

Once you have finished testing and are ready to publish your app to the App Store, the final step is to submit it for review. To do this, simply run your build on Codemagic again, this time enabling the option under the Codemagic App Store Connect section to submit the app for review:

screenshot of Codemagic website with red arrow pointing to the 'Submit to App Store review' checkbox

Congratulations!

You have now published your first Flutter app to the Apple App Store!

What we've covered

✅ Created a new Flutter app project on Codemagic

✅ Setup an account on Apple App Store connect

✅ Built and signed your iOS app

✅ Deployed your app to Apple TestFlight and the App Store

What next?