Christopher Ng

Results 7 issues of Christopher Ng

Fuel: `v1.12.0` I tried to sent HTTP DELETE with JSON body. I checked `HttpClient.kt` that it skip body set up for GET, DELETE, HEAD ```kotlin private fun setDoOutput(connection: HttpURLConnection, method:...

:bug: bug

Demonstrate how to implement Prototype pattern in Kotlin

Upgrade Kotlin to `1.2.71` and Gradle to `4.4`

Add `dp()` functions to convert `dp` more easily.

## What is new in this PR Support for `androidx` packages.

## What is new in this PR Introduce extensions for `Flowable` in RxJava2.

According to document we can bind view property to `Observable` ```kotlin val emailAndPasswordValids = Observables.combineLatest(emailValids, passwordValids) { user, pass -> user and pass } emailAndPasswordValids.bindTo(signInButton.rx.enabled) ``` But `v.1.0.0-alpha3` the `rx.enabled`...