Logo Questions Linux Laravel Mysql Ubuntu Git Menu
 

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

Tags:

ios

flutter

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

like image 388
Marco Avatar asked Jun 22 '19 20:06

Marco


2 Answers

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.

like image 100
Felipe Plets Avatar answered Sep 21 '22 11:09

Felipe Plets


  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.

like image 37
Pratham Sarankar Avatar answered Sep 21 '22 11:09

Pratham Sarankar