Róbert Papp
Róbert Papp
@LOG-TAG https://stackoverflow.com/a/36944010/253468 ?
Have you tried reading the error messages? https://travis-ci.org/github/bumptech/glide/jobs/617859292#L1572-L1653 Spotless tells you exactly what to change in a diff format, and I'm sure you can run `gradlew checkstyle pmd` to get...
Seems like a duplicate of https://github.com/bumptech/glide/issues/3778 and https://github.com/bumptech/glide/issues/3751, PR for fix in https://github.com/bumptech/glide/pull/4842
*Rambling about Chinese in an English forum (kept to preserve history, not related to issue)* @JimmyET Google translate only produces readable text if the sentences are simple, they also need...
@googolmo yes, Glide v3 and v4 both support WebP (as long as the underlying device can decode it) For Android 4.x support see https://github.com/bumptech/glide/issues/571#issuecomment-131404236
It probably involves native code, or at least packaging an external webp library. A pull request is welcome for this to create an integration library to handle this.
We had the [same](https://github.com/bitrise-steplib/steps-gradle-runner/issues/63) happen without changing anything (except clearing Gradle caches). Gradle: 5.6.2 AGP: 3.5.0 We found a workaround: ```gradle androidTestImplementation("com.github.tomakehurst:wiremock:${wiremock_version}") { // Flakey build issue where there is...
Additionally these may be helpful: ```kotlin inline fun (() -> Unit).toAction() = Action0 { this() } inline fun ((T) -> Unit).toAction() = Action1 { this(it) } inline fun ((T) ->...
Not in all cases, I'll show you examples when I get the chance. These all came from a need I had. We'll see if it makes sense.
I noticed MagicNumber to have the same problem, but many others look perfectly good. Should there be a check on how long the description can be? and/or introduce: "title" and...