Where to find iOS Bundle ID without xcode? (Flutter)

Viewed 5653

I need to find the Bundle ID of my app to add it to my firebase project.

I use VS Code for flutter development, but all the guides online on where to find the bundle id explain how to find it with xcode, which I cannot have since I have a PC

3 Answers
  1. Inside Runner.xcodeproj folder, open project.pbxproj

  2. Then to search, press CTRL+F

  3. Search for PRODUCT_BUNDLE_IDENTIFIER

  4. You will get your ios bundle id.

In the root folder of your project you probably have a file called Info.plist if you open this file in any text/code editor you can search by CFBundleIdentifier. The next line will show your Bundle ID.

It's the value inside the String tag in file Info.plist located in the folder ios/Runner .

enter image description here

Bundle ID will be here : <string>$(PRODUCT_BUNDLE_IDENTIFIER)</string>

enter image description here

Related