iOS: Find Your Bundle ID
App Store Connect
- Go to App Store Connect
- Click on My Apps
- Select your app
- In the left menu, click App Information
- Under General Information, you’ll see your Bundle ID
Info.plist
- Open your Flutter or React Native project folder
- Go to:
ios/Runner/Info.plist - Look for:
If it shows
$(PRODUCT_BUNDLE_IDENTIFIER), the actual value is defined in Xcode.Xcode
- Open the project in Xcode
- Click the blue project icon in the navigator (top-left)
- Select the main app target under Targets
- Go to the General tab
- Under the Identity section, you’ll see Bundle Identifier
Android: Find Your Application ID
AndroidManifest.xml
- Go to:
android/app/src/main/AndroidManifest.xml - Look at the top:
- The value of
packageis your Application ID.
build.gradle (App-level)
- Go to:
android/app/build.gradle - Find:
- This is the Application ID used at build time.
Google Play Store URL
The easiest way to find an Android app’s bundle ID is from its Play Store URL:id parameter is the Application ID: org.wikipedia
Google Play Console
- Go to Google Play Console
- Open your app
- Click Setup > App integrity
- Under App signing, you’ll see your Package name — that’s the Application ID.
The Application ID (Android) and Bundle ID (iOS) are often called “package name” in various places.