Daniel Novak

Results 8 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...