Ildar Karimov

Results 18 comments of Ildar Karimov

>By stepping in debugger and stack trace? No, it is mostly about API usage: ``` val messagesObservable: TestObservable = messagesSingle().test() messagesObservable.assertXXX(...) ``` vs ``` val messages: List = messagesSingle().blockingGet() assertThat(messages).containsExactly(...)...

We use okhttp for interceptors (user-agent and logs), timeouts, retrofit, stetho and even custom dns resolving. But the main reason for okhttp is easy migration from exisrit kotlin android code...

@ming13 you can probably contribute formula into central repo

> can you explain your use case a bit? I have 2 runners for performance reasons - first one is truly lightweight (basically default runner) and second one is full...

@zergtmn no, just source/target set to 1.8. Let me re-check files again... @tbsandee as I can see, plugin 3.3.0 generates files to `./app/build/intermediates/transforms/retrolambda/debug/folders/1/1/retrolambda/` but 3.2.5 puts files to other folder:...

@zergtmn another confusing point is that files in `./app/build/intermediates/classes/prod/debug/` doesn't have `addSuppressed` calls with 3.2.5 but does have with 3.3.0

@zergtmn these files looks ok, let me re-check what files are analyzed by lint

Yeah, lint checks `app/build/intermediates/classes`, but not `app/build/intermediates/transforms`. Transform API/lint bug?