I am trying to figure out how to do IAP (in app purchase/payment/billing) in Python-Kivy. I need it both on Android and iOS.
I presume that on Android I will have to write it in Java and then call it from Python via Pyjnius.
And likewise on iOS I will have to write it in Objective C and then call it from Python via PyObjus.
But are there any easier alternatives?
Regarding Android: On https://github.com/kivy/python-for-android/tree/master/pythonforandroid/recipes/android/src/android I found 3 ’billing’-source-files:
3. billing.py
But 3. is empty, and the other 2 files do not contain any comments, so I am not sure how to use them in a Kivy app?
My app is a training app where the user achieves a ‘score’, like in a game. So I will charge an ‘exam fee’ each time the user has achieved a certain skill level.