Re: [android-developers] BillingService.java

2012-11-20 Thread Bram Stolk
Thx twiggle, I also found this: http://code.google.com/p/marketbilling/issues/detail?id=14 Pretty disgraceful that they know about this but did not fix. Not to be insulting, but this would NEVER have happened with iOS. If it did, it would be fixed the same day. By my estimate, every year,

[android-developers] BillingService.java

2012-11-19 Thread Bram Stolk
Hi, I have released my app with in-app-billing. I used the Dungeons in app billing example to implement it. However, I noticed that sometimes my app would crash in BillingService.java due to a NULL intent in HandleCommand. So to fix this, I did an early return when intent is nil. Like this:

Re: [android-developers] BillingService.java

2012-11-19 Thread Stefan Alder
Had a similar issue in BillingService.onStart (from Dungeons). Not sure if this is official, but I did see here, http://code.google.com/p/marketbilling, the following was added: // Overrides onStartCommand for people who build on SDK versions 4. // Override annotation is commented out as