You signed in with another tab or window. Reload to refresh your session.You signed out in another tab or window. Reload to refresh your session.You switched accounts on another tab or window. Reload to refresh your session.Dismiss alert
Android assets may be accessed using an Uri of this format file:///android_asset/... but Fresco uses the asset://... scheme which leads to incompatibility with other solutions.
E.g. when switching using Square's Picasso with Fresco, all Uris need to be changed to work with Fresco.
The text was updated successfully, but these errors were encountered:
file:///android_asset is only for use with WebView. For example, Universal Image Loader uses assets://image.png. So, I'm afraid there is no standard convention here. The fact that FileInputStream cannot open /android_asset/... is enough to disqualify the file scheme from being used for this purpose.
Android assets may be accessed using an Uri of this format
file:///android_asset/...
but Fresco uses theasset://...
scheme which leads to incompatibility with other solutions.E.g. when switching using Square's Picasso with Fresco, all Uris need to be changed to work with Fresco.
The text was updated successfully, but these errors were encountered: