I have to add trial version in my app. User will by open my app only 9 times - then body of my application will be blocked. I read that the simplest way is usage in app billing, but my knowledge of billing is almost zero... Could you tell me how to do what i want in the simplest way?
I've trying to create simple billing helper
public BillingHelper(Context context, String skuTrial,
int marketRequest, String publicKey, String prefsName, String tagName) {
isSetup = true;
TAG = tagName;
this.context = context;
this.skuTrial = skuTrial;
this.marketRequest = marketRequest;
this.publicKey = publicKey;
this.prefsName = prefsName;
}
but i dont know what to do next...
Thanks a lot.
PS sorry for my English... ;/