Results 55 comments of Daniele Segato

Personally I compiled and placed the library on my company private artifactory and used the dependency from there. Still think the library, to be useful for most, has to be...

Well.. That should work out. I still would prefer a maven artifact but that allow including in the project as dependency so I would say it does solve the issue.

Thanks. I've read the rationale but i disagree with it. As others users pointed out you can't make that decision if you don't know if the user was asked. I...

Thanks, I did create my own solution. What I meant when I said "I disagree" was that I don't think handling those "happy path" is enough for any app; with...

@ForceGT Overall I'm not happy with it and I'm pushing to change the UX so that I do not need that at all. And I would have to go through...

The issue is that the firebase app distribution plugin hide too much of the error, you could get this error for many different reason and I'll argue that the fix...

@DATL4G if you want them to consider your pull request you need to sign the CLA as per https://github.com/material-foundation/material-color-utilities/pull/76#issuecomment-1428784962 otherwise I doubt they'll even check the submission

We've migrated away from OneSignal due to this and the inability to receive silent notifications without the notification permission. We waited several months but we just couldn't rely on this...

This: ``` if (bitmap == null || canvas == null) { if (bitmap != null) bitmap.recycle(); bitmap = Bitmap.createBitmap(width, height, Bitmap.Config.ARGB_8888); this.canvas = new Canvas(bitmap); } ``` inside `onDraw()` is...