Róbert Papp
Róbert Papp
@xiaogu-space did you solve this in the end? I faced the same issue and managed to make it work: 1. Take svg sample as base 2. Replace all `PictureDrawable` with...
See also https://github.com/qoqa/glide-svg
See also: http://bumptech.github.io/glide/doc/configuration.html#applications It's probably better to have a `GlideModule` then statically messing with the registry somewhere `.with(context)` may imply expensive initialization that you're not expecting at that point.
You can't use the default integration Glide module, as there's no way to propagate your custom client to that module. That's why you need to write your own App module,...
@dptsolutions that looks ok to me. Note that you cannot have a `@Provides @Singleton GlideApp glide()` because `GlideApp` doesn't have instance methods. You'll need `@Provides @FragmentScope GlideRequests glide(Fragment frag) {...
@sjudd I think this should be reopened. It's still the case. It's really strange to have a deprecated class returned from one of the main APIs: https://github.com/bumptech/glide/blob/b1c6076bbbc3cc46d45f35924070cb11be44ff90/library/src/main/java/com/bumptech/glide/RequestBuilder.java#L884 https://github.com/bumptech/glide/blob/b1c6076bbbc3cc46d45f35924070cb11be44ff90/library/src/main/java/com/bumptech/glide/request/target/ViewTarget.java#L48-L49
Caused by original implementation: https://github.com/jknack/handlebars.java/issues/237 Also affects `{{lookup statuses lineStatus.line}}` syntax. Workaround: ```java handlebars.registerHelpers(new HelperSource()); public static class HelperSource { /** * Workaround for `myEnumMap.[Foo]` and `lookup myEnumMap Foo` not...
7 years this would've been useful :(
@cortinico are you planning a patch with Kotlin 2.0.0 support? (current 1.23.6 works, but I would assume that the K2 improvements propagate to compiler-embedded, so a detekt patch/minor release could...
It feels like that might be a long way away (from stable), there are still breaking changes coming in refractors, right? So alpha would require some to migrate again and...