Igor QSD

Results 17 comments of Igor QSD

Similar issue here but this time it is for writing empty data to OutputStream ``` Fatal Exception: java.lang.NullPointerException: Attempt to get length of null array at java.io.FilterOutputStream.write(FilterOutputStream.java:103) at com.otaliastudios.cameraview.CameraUtils.writeToFile(CameraUtils.java:93) at...

I got the same error in my app with the same OneSignal SDK version after I updated from 4.6.3.

Hi @KacperKluka, I do not see any reference to what needs to be public or private in those documents. Also, how do we know that ably-cocoa is set up correctly?

@QuintinWillison Making things hidden is a lot harder than originally thought. Any class that has public modifier cannot be converted to package private as classes are used in different packages...

Has anyone found a solution for this issue? I have tried all the above steps and some more but I was unable to deploy.

It looks like I was in the wrong project as I have multiple accounts so if you go from Firebase website > Settings > Service Account > Manage Service Account...

Almost all tests are enabled and fixed. The ones that are not passing are: - Tests in RestProxyTest, it looks like neither combination for setting manual ProxyOptions works. - Test...

A lot of tests were improved to decrease the flakiness of tests. This is something that cannot be resolved this way and needs full refactoring to do so.

@SimonWoolf I have run all ignored tests in RealtimeMessageTest to see the issue firsthand. Unfortunately, I could not reproduce issue as only 4 of 15 tests failed in both protocols...

There are different techniques to do object cloning. We should discuss what is best for us. 1. Use clone() if the class implements Cloneable. This API is a bit flawed...