发布后更改包名称
Change package name after publishing
前段时间我在 Google 商店发布了一个应用程序,带有一个随机的包名称,因为当时我不知道它是做什么用的(我是 Android 的新手)
现在我的应用程序可以运行,已安装在许多设备上,我想更改此程序包名称,因为它似乎用于搜索排名等。
是否可以在不在商店中创建新应用程序的情况下更改应用程序的 public 程序包名称?
Things That Cannot Change:
The most obvious and visible of these is the “manifest package name,”
the unique name you give to your application in its
AndroidManifest.xml. The name uses a Java-language-style naming
convention, with Internet domain ownership helping to avoid name
collisions. For example, since Google owns the domain “google.com”,
the manifest package names of all of our applications should start
with “com.google.” It’s important for developers to follow this
convention in order to avoid conflicts with other developers.
Once you publish your application under its manifest package name,
this is the unique identity of the application forever more. Switching
to a different name results in an entirely new application, one that
can’t be installed as an update to the existing application.
更多关于你无法改变的事情here
你能读懂here
不,不可能,因为包名是您的应用程序的唯一标识。您需要使用不同的包名创建一个新项目并在 Play 商店中重新发布。
前段时间我在 Google 商店发布了一个应用程序,带有一个随机的包名称,因为当时我不知道它是做什么用的(我是 Android 的新手) 现在我的应用程序可以运行,已安装在许多设备上,我想更改此程序包名称,因为它似乎用于搜索排名等。
是否可以在不在商店中创建新应用程序的情况下更改应用程序的 public 程序包名称?
Things That Cannot Change:
The most obvious and visible of these is the “manifest package name,” the unique name you give to your application in its AndroidManifest.xml. The name uses a Java-language-style naming convention, with Internet domain ownership helping to avoid name collisions. For example, since Google owns the domain “google.com”, the manifest package names of all of our applications should start with “com.google.” It’s important for developers to follow this convention in order to avoid conflicts with other developers.
Once you publish your application under its manifest package name, this is the unique identity of the application forever more. Switching to a different name results in an entirely new application, one that can’t be installed as an update to the existing application.
更多关于你无法改变的事情here
你能读懂here
不,不可能,因为包名是您的应用程序的唯一标识。您需要使用不同的包名创建一个新项目并在 Play 商店中重新发布。