Open GoogleCodeExporter opened 9 years ago
happens if IabHelper.dispose() is called while queryInventoryAsync() is
pending, making mService null.
Someone definitely sucks at cancelling async tasks.
dispose() should properly cancel running threads and/or await for their
completion before nullifying mService. The easiest way is to spawn threads with
an ExecutorService and use its facilities to cancel threads and await for
completion.
Original comment by pujos.mi...@gmail.com
on 24 Aug 2013 at 6:04
This is caused if the Play App crashes. It can easily be reproduced:
1) Start your app, instantiate the IabHelper
2) Force-Stop the Play Store App through the system settings
3) Switch back to your app, and attempt to make a purchase or query the
inventory. The mService member is nulled by the onServiceDisconnected callback
on the ServiceConnection, and causes the NullPointerException.
Original comment by alex.suz...@endboss.ch
on 24 Sep 2013 at 8:25
Original issue reported on code.google.com by
stermi
on 6 Aug 2013 at 9:18