react-native-image-sequence
react-native-image-sequence copied to clipboard
Use unbounded queue for the img download executor
I had an issue where sequences containing a large amount of frames (150+) would fail to start on Android.
Turned out to be an issue with the default queue where tasks would be rejected if both the pool and queue were full, so the activeTasks list would never be empty and the animation would never be kicked off.
To fix this I used an unbounded queue.