I'm trying to implement in-app billing (v3) for Android devices using Adobe Air with Native Extension. My problem is I don't know how to subclass default flash wrapper Activity
(which is generated @ flash compile time and named AppEntry
, AFAIK) in order to override onActivityResult()
method, what is needed for correct in-app v3 implementation.
How to do that?
It seems its almost impossible, shame on Adobe. The only solution I have found so far is to launch some temporary Activity
every time I'm about to buy something and launch GooglePlay from it, so I can override its onActivityResult
method.
I have found such implementation here.