10

I'm new to android application development. I'm creating simple android application. Export the android application and give the package name as AndroidManifestfile packagename as

 com.example.zingyminds.apk

Now I got the apk file and upload to the google play at that time I got the below error message please anyone help me.

The package name of your apk may not begin with any of the following values: [com.android, com.google, android, com.example]

4

4 回答 4

10

包通常使用以下约定命名:

[org/com].[company].[product].[component]

按照惯例,包名不应包含大写字母。

Google Play 根据它们的包名识别所有应用程序,因此某些名称是为 android 的默认应用程序保留的,就像您在上一段中提到的那样,

[com.android, com.google, android, com.example]

所以,这些包名是不鼓励的,你应该使用上面的约定来描述包名,像这样,

com.zingyminds.apk
于 2012-12-27T06:58:26.113 回答
8

Rename your package name com.example.zingyminds.apk to com.zingyminds.apk

Google Play doesn't care about the filename of your application. It cares about the package name defined in the manifest.

于 2012-12-27T06:26:56.983 回答
2

如果您观察正确,错误消息中的第四个值是“com.example”,这与您的包 com.example.zingyminds 的开头相同...将您的包重命名为消息中未列出的其他内容,它将解决你的问题。

于 2012-12-27T06:45:02.887 回答
1

包通常使用以下约定命名:

[com.android, com.google, android, com.example]

所以,这些包名是不鼓励的,你应该使用上面的约定来描述包名,像这样,

如果你想在你的包名中提到例子,试试这个

com.zingyminds.example.apk
于 2012-12-27T08:55:18.477 回答