Rupinderjeet Singh Hans

Results 12 comments of Rupinderjeet Singh Hans

Thanks for this layout-manager. But, when we work on this in the next year ㋛, if we can include some work on saving/restoring state, it will help a lot in...

@adrianvintu I hope you have the solution by now. If not, here's how I do it. In `audio_service`, default value of `androidNotificationIcon` parameter is `mipmap/ic_launcher` which is the launcher icon...

You should instead throw an exception in these methods if they aren't supported. If someone calls `setImageResource` throw execption to tell user to not use this method.

@EthanDM @immortalx Can you share some minimal sample code on how you worked arround this bug? Did you try any alternative? @bamlab do you have any clue or suggestions regarding...

I used below code to get around this. ``` val layoutParams = zoomLayout.layoutParams layoutParams.width = layoutParams.width + changedWidth layoutParams.height = layoutParams.height + changedHeight zoomLayout.layoutParams = layoutParams zoomLayout.engine.setContainerSize( layoutParams.width.toFloat(), layoutParams.height.toFloat(), applyTransformation...

@markusressel Okay, I understand. Also, I feel what I want to do is only using 25% potential of this library. Disabling what the library is meant to be used for...

same here, byte[] causes OutOfMemory exception. From Firebase Crash Report: OOM in AbstractStringBuilder.enlargeBuffer ``` java.lang.AbstractStringBuilder.enlargeBuffer (AbstractStringBuilder.java:94) java.lang.AbstractStringBuilder.append0 (AbstractStringBuilder.java:145) java.lang.StringBuilder.append (StringBuilder.java:216) hugo.weaving.internal.Strings.byteArrayToString (Strings.java:102) hugo.weaving.internal.Strings.arrayToString (Strings.java:71) hugo.weaving.internal.Strings.toString (Strings.java:23) hugo.weaving.internal.Hugo.enterMethod (Hugo.java:63) hugo.weaving.internal.Hugo.ajc$inlineAccessMethod$hugo_weaving_internal_Hugo$hugo_weaving_internal_Hugo$enterMethod (Hugo.java:1)...

For a better understanding of these `Store` interfaces look through the code of [libsignal-service-java](https://github.com/signalapp/libsignal-service-java) and original [Signal-Android](https://github.com/signalapp/Signal-Android) implementation. In Signal-Android, I think they stopped using [libsignal-service-java](https://github.com/signalapp/libsignal-service-java), instead they integrated this...

This might be related to following issues: * https://github.com/flutter/flutter/issues/68571 * https://github.com/flutter/flutter/issues/68018 I haven't encountered this issue yet, but there are several similar reports. If you guys can let me know...