Some time ago i saw an app on the market which had an option of "no initial fee for the app, but pay a small fee after you downloaded it, and the ads will disappear". I'm a beginner at this with no current apps in my portfolio, can anyone tell me how that can be made possible? Basically how it works. Do you have to set up a separate billing method, or you can use the android market billing system and when he pays he can then downloads an update of the app which cancels the ads ?!?!

I was unable to find anything related on the web, so if anyone can explain, i'd be grateful.

Thanks

link|improve this question

1  
This is most likely realized using In-app billing. This way the app can query whether the "full version" article has been purchased from the server and hide the ads accordingly. – alextsc Feb 13 at 12:01
feedback

1 Answer

up vote 1 down vote accepted

You can probably use in-app billing and once the payment have been verified you can basically hide the ad (set its visibility to GONE). example:

if(paid) {
 ad.setVisibility(View.GONE);
}
link|improve this answer
Yeah, that i would know how to do but how would my app know if he/she paid or not. Does the user download an update or ... ?? In this case for instance, the variable 'paid' where would that get initialized? :) – AndreiBogdan Feb 13 at 11:57
1  
Google provides you a pretty developer.android.com/guide/market/billing/… – Ruuhkis Feb 13 at 12:07
feedback

Your Answer

 
or
required, but never shown

Not the answer you're looking for? Browse other questions tagged or ask your own question.