Does anyone know if we can use C ++ exceptions in Android C ++ code, use STL and target older versions of Android (2.2 specifically for me)?
I know that earlier NDK did not support exceptions. I know that before there were libraries that supported exceptions, but not STL. I know that the latest NDK supports exceptions and STL and creates code that runs on 2.3.
But I would like to write some code that works on version 2.2 and preferably earlier versions, uses STL and uses exceptions. I am a little confused by the releases of Android, SDK and NDK, and how they connect. In other words, can I use the latest version of the library in the old version of Android OS?
source share