Home > Software engineering >  Do I need unique ApplicationId to publish an app?
Do I need unique ApplicationId to publish an app?

Time:02-16

BundleId such as Reversed Domain project name. Is it required to publish an app? If so, what could be the most efficient way to get one?

CodePudding user response:

The answer is yes you need an ApplicationId to publish the app on the store both for iOS and Android.

You can choose one not used before by you or from others apps on the store.

You can use different ApplicationId for Android and iOS.

For android, you can add your application id in the application build.gradle like following

android {
    defaultConfig {
        applicationId "com.example.myapp"
        ...
    }
    ...
}

for iOS you have to create one in the developer console and add it in XCode. can you see:

I hope that is useful for you.

  • Related