Can I release an Android app to Google Play if an app of the same name (not mine) already exists? Must names be unique (first come first served) or does Google Play let 'the free market' decide which one deserves the name?
closed as off topic by A--C, lucapette, asawyer, tkone, dreamcrash Jan 16 at 0:18
Questions on Stack Overflow are expected to relate to programming or software development within the scope defined in the FAQ. Consider editing the question or leaving comments for improvement if you believe the question can be reworded to fit within the scope. Read more about closed questions here.
|
You can release an app named the exact same title string as another app, the package name (in reverse web URL format) is what keeps it unique, for example com.yourwebsite.yourappname or com.yourwebsite.yoursuitename.yourappname, but I would suggest a creative name for something going on the market! |
|||
|
|
Google Play allows many apps to have the same title. However, the application package for each app needs to be unique within Google Play. This is the
|
|||
|
|
IQ Testreveals multiple apps with same name. So I'm assuming application name doesn't have to be unique. – harism Jan 15 at 20:47..conflict over the Application package ... and that’s why it is recommended to use the Java package name convention ("com.mydomain.myapp") for the Application package name as it avoids conflict.That makes it sounds like the 'Application package' needs to be unique, but not the app name? – Sean Connolly Jan 15 at 20:50