'm writing an image editor.
I do not support editing animated gifs, so when the user selects an image I need to show an error message if that image is an animated gif.
So given a file path, how can I distinguish between a static and an animated gif?
I checked the question Understand an gif is animated or not in JAVA but it does not apply for Android since the ImageIO class is not available.
Note: I only need to know if is animated, so I'd like the fastest approach