beraybentesen / glide-xamarin-android

Glide Xamarin Binding
https://www.nuget.org/packages/Glide.Xamarin/
61 stars 14 forks source link

Can't find Signature #12

Closed ghost closed 6 years ago

ghost commented 6 years ago

In Glide 4 I can't find the Signature method anymore.

My code looks like this (working with Glide 3.8):

Glide.With(parentActivity) .Load($"{KeyValueStore.HttpImageUri}category{category.Code}.jpg") .Signature(new StringSignature(category.ImageLastModified.HasValue ? category.ImageLastModified.Value.ToString("yyyy-MM-ddTHH:mm:ss") : string.Empty)) .Into(viewHolder.CategoryImage);

Has the Signature method been removed in version 4?

beraybentesen commented 6 years ago

You can check documentation. I think it's been removed.