Logo Questions Linux Laravel Mysql Ubuntu Git Menu
 

com.example package name not allowed in Google Play

Tags:

android

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]

like image 835
Arul Kumar Avatar asked Dec 27 '12 06:12

Arul Kumar


People also ask

How do you fix you need to use a different package name because COM example is restricted?

The package name is the identitiy of the application. To rename the package name, In eclipse right click on the project in project explorer. Then Android Tools > rename Aplication Package name. Then enter the new package name.

Why do Android package names start with com?

Package names are written in all lower case to avoid conflict with the names of classes or interfaces. Companies use their reversed Internet domain name to begin their package names—for example, com. example.

What is the package name of Google Play store?

@maveň It actually is com. android. vending .


1 Answers

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.

like image 172
Chirag Avatar answered Sep 18 '22 19:09

Chirag