Hanuman
Hanuman

Reputation: 968

How to convert a paid app to a free app with in-app purchasing?

First I had created one app, which I uploaded into the Play store with some price, and I got some downloads. Now I want to add in-app purchases to my app and I want make my app free.

If I update my .apk (with in-app purchase) into the Play store then it will send notification to the users who have purchased my app.

If they are updated then it will show in-app purchases also so they have to purchase some modules.

So I want to set in-app purchases as active for users who have purchased my app.

Is there a specific process for accomplishing this?

Upvotes: 3

Views: 2898

Answers (3)

kiturk3
kiturk3

Reputation: 558

first of all you have to add vending inapp billing files in your package, then in manifest you have to give permission. thats from application side, now you have to configure product id and licence key. Below is very useful link which i also had applied, Hope it works for you too :)....

Sample Project && configuration

Upvotes: 1

user462990
user462990

Reputation: 5532

My little contribution is that setting the app to use in-app purchases is in the Content Rating (of all places) There is one checkbox!!! Lost an hour at least on this.

Upvotes: 0

Dhaval Parmar
Dhaval Parmar

Reputation: 18978

You can make a paid app be free

Is there a specific process for accomplishing this?

No, their is no official way to do this, Because In-App you have to add items on google play and its show to every user util he/she pay for that In-App Item.

but you can handle by your own way.

Like if user already pay then you have to hide in-app(or whatever your app flow) for that perticular user and enable that future for them. So no need to pay again for same

in sort you can handle by JAVA code(because you have list of paid user)

If app have same package and current version is new then installed then its update app(make sure both version are signed with same certificate/keystore)

Important: If you change an app from Paid to Free and save the change, the change is permanent. Once changed to free, the app can't be changed back to a paid app. If you want to charge again for a paid app that you’ve changed to a free app, you would need to create a new app with a new package name and set a price for the new app.

Android Developer Help

Upvotes: 4

Related Questions