I want to display a .svg file in an imageview or a webview. I don't know which one is better for this purpose, would like some opinions on this subject.
Keep in mind that I don't have the file on compile time so I can't use the VectorDrawable API 21 method with Android Studio, although I can use the class if it helps.
First I need to search if there is no .svg stored in the filesystem (private app storage), if not found I have to download and save it on the filesytem. I will use OkHTTP to download from the web and save the file.
I already have glide on this project if this help on displaying a .svg I would like suggestions since I never worked with .svg using glide.
For this kind of problem should I use old libraries like svg-android? I don't know if they are reliable anymore.