apLundell said:
I don't see how it couldn't be more work.
It depends on the API, of course, but instead of writing
FileOutputStream fos = openFileOutput("save03.bin", Context.MODE_PRIVATE);
fos.write(savedata.getBytes());
fo…
apLundell said:
What makes life easier for the rest of us is as much compatibility with standard Android as possible.
(emphasis moved)
Why do you hate your users? (:
Besides, if properly implemented, a save file management framework …
Who knows? Most likely, they never use the NDK for first-party apps so it just falls off their radar. (I guess they're too busy doing things like designing bold hour digits.)
FYI, getAxisValue() does in fact exist in Android as a native function -- it's just not exposed by the NDK. If you want to play with fire, use something like: (condensed)
enum {AXIS_X = 0, AXIS_Y = 1, AXIS_Z = 11, AXIS_RX = 12, AXIS_RZ = 14};
exter…