Lukasz Piliszczuk

Results 60 comments of Lukasz Piliszczuk

Thanks @nielsenko! Looking forward to it. One more question regarding your example: is there a particular reason you're doing the `find()` outside of the transaction? Would it be ok to...

There is a long discussion on dart repo for a similar topic, about having `required named` by default instead of positional params. There are no clear consensus, but lots of...

Why not use named required params? ```dart class _PersonRequiredFields { final String firstname; final String lastname; } class PersonRequiredFields { PersonRequiredFields.named({required this.firstname, required this.lastname}); } ```

Are you using the sample project or your custom project? It should work on an emulator with Google APIs installed. I will check on my side.

Thanks for the PR @richarddd. Can you integrate the changes suggested by @rharter before merging?

Thanks for the report, I actually didn't tested with android.test.canceled and android.test.refunded products. I will do, and fix this for tomorrow.

The library is not in active development of new features right now, but it's still maintained and stable. I'm using it in several large scale production apps. I cannot promise...

That would be better indeed. I'm also planning to invest more time into this threading issue, because current "blocking thread" solution does not seem to be the best solution.

Are you talking about this? https://developer.android.com/google/play/billing/billing_best_practices.html#payload

No reason for API 16, will make it lower.