Event handling in Free42 and Plus42 works pretty much the same on all platforms, and this kind of behavior could theoretically happen on all of them. I have observed it in Windows once or twice, but it's extremely rare.
If the OS sends an app events after having suspended it, or if it interprets events as gestures while also sending them to the app, I'd consider those OS bugs, not bugs in the app.
Android appears to be a repeat offender in this regard. Events being delivered even after the app has been told to shut down are causing occasional crashes even now. I have added logic to the app's core to block handling of events post-shutdown, but I haven't yet been able to prevent these crashes entirely. It is difficult to implement workarounds for OS bugs when those bugs happen too rarely to be easily reproducible; the crash reports in the Google Play Developer Console are all I have to go on, and they don't always tell me enough.
Fortunately the crashes are quite rare. The drag gesture conflict is another matter, but fixing that is primarily Google's responsibility, there's really not much I can do about it as an app developer. There used to be a similar issue with the sideways swipe to switch between the calculator and print-out, in the iOS versions, which eventually went away when Apple improved the way the OS intercepts and handles those gestures. Maybe Google are going to improve gesture recognition, too, eventually, but when I tried implementing sideways swiping for the print-out in the Android version a few years ago, it was a disaster.