This short article shows you a couple of different ways to find the iOS bundle identifier of a Flutter project.
Using Xcode
1. Open the ios folder of your Flutter project by using XCode.Advertisements
2. Click on Runner in the left sidebar.

3. Now you can see your bundle id in the General tab.
Search for PRODUCT_BUNDLE_IDENTIFIER
Go to:
<your project>/ios/Runner.xcodeproj/project.pbxproj
AdvertisementsAnd search for PRODUCT_BUNDLE_IDENTIFIER, like this:
You can also use the search feature of VS Code (Visual Studio Code) for more convenience.
Further reading:
- Flutter iOS: Trying to embed a platform view butÂ…
- Flutter: Changing App Display Name for Android & iOS
- 2 Ways to Delete Derived Data in Xcode
- How to Adjust Indents and Spacing in Xcode
- Create a Custom NumPad (Number Keyboard) in Flutter
You can also check out our Flutter category page or Dart category page for the latest tutorials and examples.