On line 906/907 they have MACRO
!(defined(macintosh) || defined(__APPLE__) || defined(__APPLE_CC__))
What I changed to include an exception for ANDROID
!(defined(macintosh) || defined(__APPLE__) || defined(__APPLE_CC__) || defined(ANDROID))
So far so good, although my code is locale-independent ...
I have a crossroads question for the Android Developers development team, so maybe they will have a definitive answer to the question why dynamic linking works instead of static linking. I will send any news that I receive ...
source
share