Configure Proguard for Android
mainIf you use Proguard, you must add the following rules to your android/app/proguard-rules.pro file to prevent the library and its dependencies (Glide) from being stripped during the build process.
-keep public class com.dylanvann.fastimage.* {*;}
-keep public class com.dylanvann.fastimage.** {*;}
-keep public class * implements com.bumptech.glide.module.GlideModule
-keep public class * extends com.bumptech.glide.module.AppGlideModule
-keep public enum com.bumptech.glide.load.ImageHeaderParser$** {
**[] $VALUES;
public *;
}