Android In App Billing Issue (SOLVED)

So, what I saw in VIP.gui_script is that in your on_input() function you never check action_id and you have two multi-touch bindings in your input_bindings. This will for each screen touch generate three calls to on_input(), one for the touch (action_id is “touch”) and one for each of your multi-touch bindings (“touch” and “retry_touch”). Unless you are actually making use of multi-touch you should remove the multi-touch bindings. You should also make sure none of them are bound to the “touch” action_id, since this is automatically generated for touch events. And finally, as I’ve already written, check the action_id as well!

2 Likes