Dale King

Results 133 issues of Dale King

Sometimes a String resource needs leading or trailing whitespace for the string and I cannot find any way to handle that with Moko resources. Adding leading or trailing whitespace in...

enhancement

The issue here is what is the fallback behavior if a string does not have a translation. This happens for us because our translation department follows a weekly cadence of...

enhancement

Wondering if you support the use of [xliff:g tags in strings](https://developer.android.com/guide/topics/resources/localization#mark-message-parts). I am going to test if you do, but even if you do your documentation should mention it to...

enhancement

help wanted

Using the latest gradle, I see this warning in the build: Execution optimizations have been disabled for task ':wfmShared:xxxxxxxxXxxxxApiOpenApiGenerate' to ensure correctness due to the following reasons: - Additional action...

bug

Providing a TokenFeature.TokenProvider requires creating on object like this: object : TokenFeature.TokenProvider { override fun getToken() = "Bearer ${authentication.accessToken}"` } With the Kotlin 1.4 feature of functional interfaces, this interface...

enhancement

Would be great if you could click on a piece of the pie or on a label and receive a notification of which of the values the click corresponds to.

The standard syntax is to pass the value as a parameter to assertThat as in ``` assertThat(someExpressionToGetTheValue()) ``` But depending on the complexity of the expression this can get harder...

**Describe the bug** Applying the plugin to an Android project fails with: > Android extension not found. Make sure the Android plugin is applied I am using AGP 7.0.3 and...

bug

You have this: ``` class NumberTriviaBloc extends Bloc { final GetConcreteNumberTrivia getConcreteNumberTrivia; final GetRandomNumberTrivia getRandomNumberTrivia; ``` Which is hardcoding a dependency on GetConcreteNumberTrivia and GetRandomNumberTrivia types. Shouldn't that really be:...