I have a free app in android play store. Now I want to give user 2 options. One free and the other paid where the paid app has no advertisements and other feature enhancements
Is there a way to do so in Android?
I have a free app in android play store. Now I want to give user 2 options. One free and the other paid where the paid app has no advertisements and other feature enhancements
Is there a way to do so in Android?
Well, you could get this in different ways.
As @Ken Wolf said you could add a system in your exists app which could let the user to pay to remove ads from the same application they have without the need to install a different version. With this system you have only one APK and you should check if the user has paid the application if yes enable pro features and disable ads.
Or, if you want to create two different versions you could create a basic application and a "pro" and using a library project to keep an unique code shared between the two versions.
And, of course the code of the "pro" features will be only in the pro APK version... same for resources, layouts, drawable etc.
Other answers i found for you: