Reputation: 845
I'm implementing Google Play's Billing Library for users to purchase in-app subscriptions. According to Google's documentation on testing, I can only test my code through a test release, such as an internal test release. I've gotten to this point and have attempted to purchase a test subscription using one of Google's testing product IDs. However, when normally I should see the "Purchase Successful" popup, my app crashes. I have no idea why, and have been trying to understand my problem, but since this is an internal release there aren't any logs generated (or at least none that I could find).
Can someone help me understand the proper method for testing Google Play's Billing Library? I don't understand how they meant for developers to test their library if we can't even view the stack trace.
Upvotes: 0
Views: 624
Reputation: 13836
Anytime there is a crash it should appear in the logcat on your device. Are your logcat filters too aggressive? There is some documentation on this here.
Upvotes: 1