Jake Wharton
Jake Wharton
Definitely interested in how you are invoking the libraries. Moshi, for example, is optimized for reading to and from UTF-8 bytes in a streaming fashion with Okio. If you are...
I see two potential and separate improvements that I think could be argued for: 1. The fastutil dep by JB markdown is egregious. I haven't looked, but I can guarantee...
> 1. The fastutil dep by JB markdown is egregious. I haven't looked, but I can guarantee this library is barely used and likely as premature optimization (as opposed to...
Since that library is not stable, you're better off doing a manual convert for now. I suspect once it does go stable it will be supported. You could also use...
None of those options have anything specific to do with the use of `infix` but are general variations on ways to write the body of an extension function (or a...
Yes this is solved in v2. Still would be nice to fix it in v1, though.
This is amazing! We actually have an IntelliJ plugin which is supposed to provide this functionality as well: https://github.com/square/dagger-intellij-plugin. Sadly it's fallen a bit out of favor with regard to...
The error should be on `resourceFactory` as in Dagger's eyes it's unused. You can change your `@Module` declaration to fix: ``` java @Module(injects = ResourceFactory.class) ```
Yeah keep it open. We'll try and figure it out. Can you paste the output from `mvn -v`?
This is not the repository for Dagger 2. You want https://github.com/google/dagger On Mon, Oct 12, 2015 at 11:28 PM Mike Nakhimovich [email protected] wrote: > Came here from SO question, I'm...