在Android的程序包ID程序包、Android、ID

由网友(命该如此)分享简介:什么是捆绑ID 在Android的意思,什么是它的使用,而且可以在两个Android应用程序具有相同包ID?如果是的话,为什么?如果没有那么为什么解决方案 一个包ID也被称为一个包在Android是所有Android应用程序的唯一标识符。它必须是唯一的,当你把它上传到谷歌播放它识别和使用包名作为唯一的应用程序标识发布...

什么是捆绑ID 在Android的意思,什么是它的使用,而且可以在两个Android应用程序具有相同包ID?如果是的话,为什么?如果没有那么为什么

解决方案

一个包ID也被称为一个包在Android是所有Android应用程序的唯一标识符。它必须是唯一的,当你把它上传到谷歌播放它识别和使用包名作为唯一的应用程序标识发布您的应用程序作为。

实际上它是需要确定您的应用程序的唯一的事情,一般有三部分:

com.example.testapp

其中,示例一般公司/发行商的名称,和 testapp 是应用程序的名字。

您将无法到APK上传到具有相同的包在店里另一个应用程序已经商店。

如果您需要更改在Eclipse包名称,请执行以下操作:

右键单击项目> Android的工具>重命名应用程序包......

开发Android程序

What is meant by bundle ID in android, What is its usage, And can two android apps have same bundle ID? if YES then why? and if NO then why

解决方案

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

阅读全文

相关推荐

最新文章