Skip to content

Where to find your Bundle ID, Application ID, or Package Name – in iOS, Android, Windows, and cross-platform projects

We’ll show you where you should look for your application identifier in your iOS, Android, React Native, Flutter, .NET MAUI, Ionic Capacitor, or UWP project.

Kevin March 20, 2025 3 mins read
app store

When generating a trial license for our mobile SDK, you’ll be asked to enter your app identifier. For iOS apps, this identifier is called bundle ID, whereas for Android apps, it’s referred to as the application ID. For Windows (UWP) apps, the equivalent is the package name. Your license will be bound to these identifiers.

If you’re unsure about the exact identifier of your app, you can look it up in the project files. This goes for native development as well as the cross-platform frameworks React Native, Flutter, .NET MAUI, and Ionic Capacitor.

In this article, we’ll show you where you can find your bundle ID, app ID, or package name for each platform our SDK supports.

You can jump directly to the platform you’re interested in:

If you’re unable to find your bundle ID, application ID, or package name even with these instructions, reach out to us via sdksupport@scanbot.io.

iOS

Bundle ID

  1. Open your project in Xcode.
  2. In the project navigator, select your top-level project file.
  3. Select your main app target (if not already selected) and open the “General” tab (if not already open).
  4. You can find your bundle ID in the “Identity” section in the “Bundle Identifier” field.
Finding the bundle ID in Xcode

Android

Application ID

  1. Open your project in Android Studio.
  2. Navigate to the app folder (called build.gradle (Module :app) in the Android project view) and open build.gradle.
  3. You can find your application ID under android {} > defaultConfig {} > applicationID
Finding the application ID in Android Studio

React Native

Bundle ID

  1. Open your project in Xcode.
  2. In the project navigator, select your top-level project file.
  3. Select your main app target (if not already selected) and open the “General” tab (if not already open).
  4. You can find your bundle ID in the “Identity” section in the “Bundle Identifier” field.
Finding the bundle ID in your React Native project in Xcode

Application ID

  1. Open your project folder in your file manager or IDE.
  2. Navigate to android > app and open build.gradle.
  3. Search for “applicationId”.
Finding the application ID in your React Native project

Flutter

Bundle ID

  1. Open your project in Xcode.
  2. In the project navigator, select your top-level project file.
  3. Select your main app target (if not already selected) and open the “General” tab (if not already open).
  4. You can find your bundle ID in the “Identity” section in the “Bundle Identifier” field.
Finding the bundle ID in your Flutter project in Xcode

Application ID

  1. Open your project folder in your file manager or IDE.
  2. Navigate to android > app and open build.gradle.
  3. Search for “applicationId”.
Finding the application ID in your Flutter project

.NET MAUI

Bundle ID & Application ID

  1. Open your project folder in your file manager or IDE.
  2. In the root directory, open {YourProjectName}.csproj.
  3. Search for “ApplicationId”.
Finding the bundle ID and application ID in your .NET MAUI project

Ionic Capacitor

Bundle ID

  1. Open your project in Xcode.
  2. In the project navigator, select your top-level project file.
  3. Select your main app target (if not already selected) and open the “General” tab (if not already open).
  4. You can find your bundle ID in the “Identity” section in the “Bundle Identifier” field.
Finding the bundle ID in your Ionic Capacitor project in Xcode

Application ID

  1. Open your project folder in your file manager or IDE.
  2. Navigate to android > app and open build.gradle.
  3. Search for “applicationId”.
Finding the application ID in your Ionic Capacitor project

Windows (UWP)

Package name

  1. Open your project folder in your file manager or IDE.
  2. In the root directory, open Package.appxmanifest.
  3. Search for “<Identity”. Your package name is the value assigned to Name.
Finding the package name in your UWP project