Does this change any of the generated binding API's?
Yes, it adds methods for the Glide builder API
RequestOptions.DontAnimate
RequestOptions.DontTransform
RequestBuilder.DontAnimate
RequestBuilder.DontAnimate
Describe your contribution
The auto-generated bindings create ..._T methods that return Java.Lang.Object. These can't be used in the builder pattern. The existing bindings contain methods that to the casting but DontAnimate & DontTransform were missing, These are added with this PR
Does this change any of the generated binding API's?
Yes, it adds methods for the Glide builder API
RequestOptions.DontAnimate
RequestOptions.DontTransform
RequestBuilder.DontAnimate
RequestBuilder.DontAnimate
Describe your contribution
The auto-generated bindings create ..._T methods that return Java.Lang.Object. These can't be used in the builder pattern. The existing bindings contain methods that to the casting but
DontAnimate
&DontTransform
were missing, These are added with this PR