- UID
- 60145
- 帖子
- 520
- 积分
- 17481
- 阅读权限
- 70
- 注册时间
- 2007-5-9
- 最后登录
- 2015-6-19
- 在线时间
- 3666 小时
|
A bundle ID otherwise known as a package in Android is the unique identifier for all Android apps. It needs to be unique as when you upload it to Google Play it identifies and publishes your app using the package name as the unique app identification.
Really it is the only thing which is necessary to identify your app, and generally it has 3 parts:
com.example.testapp
Where example is generally the company/publishers name, and testapp is the appname.
You will not be able to upload an APK to the store which has the same package as another app already in the store.
Should you ever need to change the package name in Eclipse, do the following:
Right click project > Android Tools > Rename Application Package...
--------------
总结
1:bundle ID: package 名字;
2:A 和 B 不能共存, 包括不能共存在一个设备,以及不能共存在google play
3:App 都可以修改 package 名字 或者 按照你的标题说就是可以修改bundle ID。 A 可以改名成 B。 B 也可以改名成A, C,D 或者E。
4:如果什么额外的都不做,就把A 的 package 修改成 和B 一样。在安装A 的时候,设备会告诉你是否要先卸载B。,只有卸载B 了才可以继续安装A
--------------------------------------
5:如果你说的只是 APP 图标上的名字。那前面说的都是废话,app name 可以一样。请随便改。 |
|