I have a physics application I want to mantain the deterministic across platforms with scrictfp (which I use and works nowadays in Windows/Mac/Linux Machines) with J2SE 6.
I need to convert this code to compile on:
-Android
-IOS
Is this strictfp possible in these platforms?
iOS doesn't run Java, so no. Android does run Java 8, so j2Se6 would likely be fine, as long as you weren't trying to do the UI in that library (the Android UI is highly different).