Agent skill
how-to-build-a-flutter-app-on-xcode-cloud
Learn how to set up Xcode Cloud to build and deploy your Flutter application to TestFlight and the App Store with this step-by-step guide.
Install this agent skill to your Project
npx add-skill https://github.com/rodydavis/skills/tree/main/skills/flutter-and-xcode-cloud
Metadata
Additional technical details for this skill
- last modified
- Tue, 03 Feb 2026 20:04:22 GMT
SKILL.md
How to build a Flutter app on Xcode Cloud
In this article we are going to go over how to setup Xcode Cloud to build your Flutter application for TestFlight and the AppStore.
Step 1
Before we begin Flutter needs to be installed, and you can check by running the following:
flutter doctor -v
After it is installed we can run the following command to create and open our Flutter project (skip down to step 2 if adding to an existing app).
mkdir flutter_ci_example
cd flutter_ci_example
flutter create .
If you need more help with creating the first project you can check out my previous blog post here.
After the project is created open it in your favorite code editor.
code .
Step 2
The generated files should look like the following:
Create a new file at ios/ci_scripts/ci_post_install.sh and update it with the following:
#!/bin/sh
# Install CocoaPods using Homebrew.
brew install cocoapods
# Install Flutter
brew install --cask flutter
# Run Flutter doctor
flutter doctor
# Get packages
flutter packages get
# Update generated files
flutter pub run build_runner build
# Build ios app
flutter build ios --no-codesign
This is a file Xcode Cloud needs to run after the project is downloaded. We need to install cocoapods for any plugins we are using and Flutter to prebuild our application.
Then run the following command which will make the script executable:
chmod +x ios/ci_scripts/ci_post_clone.sh
Step 3
Open up the iOS project in Xcode by right clicking on the iOS folder and selecting "Open in Xcode".
You can also open the project by double clicking on the ios/Runner.xcworkspace file.
Make sure you have the latest version of Xcode Cloud install and that you have access to the beta. Create a new workflow by the menu Product > Xcode Cloud > Create Workflow:
Follow the flow to add the project and choose which type of build you want.
Make sure to remove MacOS as a target in the workflow by selecting Archive - MacOS and the delete icon on the top right.
If you want to build and release the MacOS app you will need to do that with another script in the macos folder and a workflow in that Xcode workspace.
You can create the file macos/ci_scripts/ci_post_clone.sh and update it with the following:
#!/bin/sh
# Install CocoaPods using Homebrew.
brew install cocoapods
# Install Flutter
brew install --cask flutter
# Run Flutter doctor
flutter doctor
# Enable macos
flutter config --enable-macos-desktop
# Get packages
flutter packages get
# Update generated files
flutter pub run build_runner build
# Build ios app
flutter build ios --no-codesign
If all goes well it will look like the following after a successful build:
Conclusion
Flutter makes it ease to build and deploy to multiple platforms and Xcode Cloud takes care of the signing for Apple platforms.
You can learn more about cd and flutter here.
Recommended Agent Skills
Expand your agent's capabilities with these related and highly-rated skills.
how-to-do-offline-recommendations-with-sqlite-and-gemini
Learn how to enhance your CMS like PocketBase with AI-powered content recommendations using text embeddings, SQLite, and k-nearest neighbor search for efficient and scalable related content suggestions.
how-to-build-a-webrtc-signal-server-with-pocketbase
Learn how to build a simple WebRTC video call application using PocketBase as a signaling server, enabling peer-to-peer communication with SQLite on the server and realtime updates via Server Sent Events.
flutter-terminal-cheat-sheet
This post provides a handy collection of Flutter commands and scripts for web development, package creation, troubleshooting, testing, and more, streamlining your Flutter workflow.
how-to-print-multiple-objects-to-the-console-with-print-in-dart
Learn how to print multiple objects to the console in Dart using Records, offering a similar experience to JavaScript's `console.log()` functionality.
flutter-input-output-preview
Build responsive Flutter apps with a reusable `TwoPane` widget and an `InputOutputPreview` component for side-by-side code and preview display on both mobile and desktop.
displaying-html-in-flutter
Easily display and interact with HTML content in your Flutter app using the `easy_web_view` package, which supports both web and mobile platforms.
Didn't find tool you were looking for?