Ralf Wondratschek

Results 59 comments of Ralf Wondratschek

Could you update the SDK to 2.0.0 and try again? The issue should be fixed.

Do you mind updating to the new version 2.0.0 and try again? Please take a look at the demo, which shows how to attach images to a note. https://github.com/evernote/evernote-sdk-android/blob/master/demo/src/main/java/com/evernote/android/demo/task/CreateNewNoteTask.java

What exactly do you mean in generated code? The interfaces will be visible in generated Java stubs (when using KAPT) or in the bytecode itself. They're not visible in the...

Yes, I agree that this is an issue. I'd not advocate for an API to get all top level functions, but not being able to wrap a top level function...

Another edge case besides different qualifiers is that names could clash for different types. Functions need to be considered as well, e.g. ```kotlin @MergeComponent(StartupScope::class) @SingleIn(StartupScope::class) interface StartupComponent { fun client():...

We run a job once a day to collect stats about our repository: how many modules do we have, what's their size, what's the cost to maintain them. Part of...

Thanks for the PR, but this library is deprecated and not maintained anymore. I don't have the bandwidth to test and verify the fix. I keep it open for now...

I need to transform both values, so the API wouldn't be nice if `compressWhitespaces()` is on the String. My goal was also that people type `assertThat(string).` and get a list...

Yes, correct. This raises questions when different implementations are equal and could result in false positives. Right now it's forcing the caller to make this decision, what might be intended....

@JakeWharton Is this what you mean? ```kotlin fun assertThat(string: String, assertions: StringSubject.() -> Unit) { assertThat(string).run { assertions() } } ``` This would allow ```kotlin assertThat("hello") { isNotEmpty() isEqualTo("hello") }...