> ## Documentation Index
> Fetch the complete documentation index at: https://docs.autosana.ai/llms.txt
> Use this file to discover all available pages before exploring further.

# Finding Your Bundle ID

> Learn how to find your Bundle ID for iOS and Application ID for Android

<Tip>
  Add our [MCP Server](/mcp-setup) to help you find your bundle ID.
</Tip>

## iOS: Find Your Bundle ID

### App Store Connect

1. Go to [App Store Connect](https://appstoreconnect.apple.com)
2. Click on **My Apps**
3. Select your app
4. In the left menu, click **App Information**
5. Under **General Information**, you'll see your **Bundle ID**

<CodeGroup>
  ```text Example theme={null}
  com.yourcompany.yourapp
  ```
</CodeGroup>

### Info.plist

1. Open your Flutter or React Native project folder
2. Go to: `ios/Runner/Info.plist`
3. Look for:

```xml theme={null}
<key>CFBundleIdentifier</key>
<string>$(PRODUCT_BUNDLE_IDENTIFIER)</string>
```

<Note>
  If it shows `$(PRODUCT_BUNDLE_IDENTIFIER)`, the actual value is defined in Xcode.
</Note>

### Xcode

1. Open the project in **Xcode**
2. Click the blue project icon in the navigator (top-left)
3. Select the main app target under **Targets**
4. Go to the **General** tab
5. Under the **Identity** section, you'll see **Bundle Identifier**

<CodeGroup>
  ```text Example theme={null}
  com.example.myapp
  ```
</CodeGroup>

<Tip>
  The Bundle ID must be unique for each app on the App Store.
</Tip>

***

## Android: Find Your Application ID

### AndroidManifest.xml

1. Go to: `android/app/src/main/AndroidManifest.xml`
2. Look at the top:

```xml theme={null}
<manifest xmlns:android="http://schemas.android.com/apk/res/android"
  package="com.yourcompany.yourapp">
```

3. The value of `package` is your **Application ID**.

### build.gradle (App-level)

1. Go to: `android/app/build.gradle`
2. Find:

```gradle theme={null}
defaultConfig {
  applicationId "com.yourcompany.yourapp"
}
```

3. 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:

```text theme={null}
https://play.google.com/store/apps/details?id=org.wikipedia&hl=en_US
```

The `id` parameter is the Application ID: **org.wikipedia**

### Google Play Console

1. Go to [Google Play Console](https://play.google.com/console)
2. Open your app
3. Click **Setup > App integrity**
4. Under **App signing**, you'll see your **Package name** — that's the Application ID.

<Info>
  The Application ID (Android) and Bundle ID (iOS) are often called "package name" in various places.
</Info>
