Bundle Id is basically the package name of the android application and it the unique identifier for all the android applications. Bundle id should always be unique ie the two application should not have same bundle id and if the bundle id is same then the Google store will not allow you to upload the apk in the store.
com.testCompany.testApplication
The bundle id has three parts:
com: Domain name
testCompany
testApplication
The two android applications can never share the same bundle id because this is only the unique identifier through which android identifies any application in google store.
0 Comment(s)