If I send a purchase intent via the standard
String mySku = \"android.test.purchased\";
mHelper.launchPurchaseFlow(this, mySku, 10001, mPurchaseFinishedLis
For those of you who had the same issue I was experiencing...
I just made my member variable IabHelper static, and that fixed the issue.
I already had added AndroidPenguin's code, and was still getting crashes from a null IabHelper, after I had purchased an item(so onActivityResult never had a chance to call handleActivityResult because mHelper was null).