Daniel Novak

Results 10 issues of Daniel Novak

I was clicking the button on the toast during the fade out animation and I got this: ``` E/AndroidRuntime﹕ FATAL EXCEPTION: main Process: net.simonvt.messagebar.samples, PID: 3073 java.lang.NullPointerException at net.simonvt.messagebar.samples.SampleActivity.onMessageClick(SampleActivity.java:67) at...

The suspend API functions ignore any defined `ResponseConverters` - is that by design? A look into the source code confirms this, only the non-suspend code in KtorfitClient.request uses `getResponseConverters()`. _*(I...

The following code doesn't compile because `PUT` throws an error that `@Url` must be set in case no URL is forwarded into `PUT` directly - even though the `@Url` is...

`Field` in `FormUrlEncoded` requests on Android with OkHttp gets encoded twice. For example `@` is encoded as `%2540` instead of `%40`. I suspect that OkHttp is doing encoding too. Tested...

`local.properties` are checked into Git - these should be part of `.gitignore`. In this case they include a local path to `=/Users/jensklingenberg/Library/Android/sdk`

I am seeing this exception being reported in Crashalytics. Robospice is the only foreground service in our app. It happens only on Nexus 10 running 4.3. I looked into the...

bug
enhancement

When you have a button inside the sticky view and some other clickable items below the sticky view and you click on the button, then the click is registered, but...

The parcelable generation doesn't work on this class. But it works on http://parcelabler.com/. Only the long will be recognized and made parcelable, the Strings are ignored. ``` public class GetCategoriesResponseCategory...

Parsing of calendar events will throw an exception if the conference provider name is different than the defined list in `ConferencingProvider`: https://github.com/nylas/nylas-java/blob/5d0a7fd55012a286f9cc86f94fe6fc6c37fe5dad/src/main/kotlin/com/nylas/models/ConferencingProvider.kt#L8 For example we have a user where the...

bug

Consider following ICS calendar with one event: ``` BEGIN:VCALENDAR VERSION:2.0 METHOD:PUBLISH BEGIN:VTIMEZONE TZID:America/New_York X-LIC-LOCATION:America/New_York BEGIN:DAYLIGHT DTSTART;VALUE=DATE-TIME:20250309T070000 TZNAME:EDT TZOFFSETFROM:-0500 TZOFFSETTO:-0400 END:DAYLIGHT BEGIN:STANDARD DTSTART;VALUE=DATE-TIME:20251102T060000 TZNAME:EST TZOFFSETFROM:-0400 TZOFFSETTO:-0500 END:STANDARD END:VTIMEZONE BEGIN:VEVENT DTSTART;TZID=America/New_York;VALUE=DATE-TIME:20250221T143000 DTEND;TZID=America/New_York;VALUE=DATE-TIME:20250221T153000...