Dustin Kerstein

Results 76 comments of Dustin Kerstein

I am running into the second issue in the original post. Has anyone found a solution? It seems to happen only on my spreadsheet when I am using a =QUERY()...

Yeah, that sound good. It's happening somewhere in `OnGetResponse` which already has a try, catch. I can definitely add some more, but do you have any inclination as to which...

Here's that chunk of code for reference: ``` private void OnGetResponse(IAsyncResult asyncResult) { responseReceived = true; //Debug.Log("OnGetResponse"); byte[] imageBuffer = new byte[1024 * 1024]; //Debug.Log("Starting request"); // get the response...

It looks like it's happening here: ``` Array.Copy(buff, 0, imageBuffer, size, buff.Length); ``` But none of the variables are zero/null as when I `Debug.Log("size: " + size + " imageBuffer...

Ah, the buffer size was too small based on the 4096 offset. I increased the buffer to `byte[] imageBuffer = new byte[2048 * 2048]` and it seems to have resolved...

Is this the error you're getting? ``` 02-06 12:03:35.342 16651-16676/? E/CRASH: *** *** *** *** *** *** *** *** *** *** *** *** *** *** *** *** Build fingerprint: 'google/marlin/marlin:9/PQ1A.190105.004/5148680:user/release-keys'...

Also, would you be able to provide your complete workaround? Thanks! > wrapped and exposed GoogleSignIn_Configure method in GoogleSignInImpl class, and when configuration changes, call it and problem gone.

Thanks @GarlicDipping! That seems to have fixed my error on both iOS and Android. I did have to add `void Configure (GoogleSignInConfiguration configuration)` to `internal interface ISignInImpl`: ![image](https://user-images.githubusercontent.com/7659306/52573371-002b2180-2de8-11e9-9c60-6134260e045c.png) But then...

Was just curious, is there any update on this? Thanks!

Strange, I'm no longer getting this error. Maybe it was something with the Branch API. However, shouldn't these lines (across all of the callback methods) have null protection? Ie: ```...