Azizur Rehman
Azizur Rehman

Reputation: 2113

Can I upload two version of the same app on playstore?

Can I upload two version of the same app. Like one is ad free (paid version) and the other one contains ad (free version). Does google play console allows it?

Upvotes: 4

Views: 2644

Answers (2)

Tamerlan Rustambayli
Tamerlan Rustambayli

Reputation: 55

You can upload exactly the same apps on PlayStore if package names are different.

Upvotes: 2

Mdlc
Mdlc

Reputation: 7288

Yes you can, certainly. And it's very easy to if you're using Flavors, as introduced with the Gradle build system.

You should ensure that each app you submit to Google Play has a different, package name, if you're using Flavors you can do this like this:

android {  
    productFlavors {
        free {
            applicationId "com.app.free"
        }

        pro {
            applicationId "com.app.full"
        }
    }
}

There are many great tutorials on using Flavors, so it shouln't be to hard to get started too.

If you're not a big fan of using Gradle, you can of-course maintain two projects with different package names and submit them both to Google Play, but I wouldn't recommend doing so.

Upvotes: 6

Related Questions