[android-developers] Re: C++ exception support confusion

2011-01-14 Thread Indicator Veritatis
I thought it was pretty clear. What was not clear is how this comes to be the case. But nevertheless, I agree with Dave Turner that the wording could stand some improvement: it is not at all obvious, for example, what he means by saying on the one hand, that the system does not support exceptions

[android-developers] Re: C++ exception support confusion

2011-01-13 Thread Phil Endecott
support for C++ exceptions and RTTI is not available with Android 1.5 system images. Do you care about devices running Android 1.5 and older? -- You received this message because you are subscribed to the Google Groups Android Developers group. To post to this group, send email to

[android-developers] Re: C++ exception support confusion

2011-01-13 Thread SImplyG2010
Hey Allen, 1.5 takes up 5% of the devices on market http://developer.android.com/resources/dashboard/platform-versions.html however that was not your question. Did you see this in the docs? Similarly, the NDK toolchain supports C++ RTTI (RunTime Type Information) since NDK r5, but all C++

[android-developers] Re: C++ exception support confusion

2011-01-13 Thread A Curtis
support for C++ exceptions and RTTI is not available with Android 1.5 system images. Do you care about devices running Android 1.5 and older? It was not clear this was an Android 1.5 and older issue. Thanks -- You received this message because you are subscribed to the Google Groups

[android-developers] Re: C++ exception support confusion

2011-01-13 Thread FrankG
Good Question .. when you look at core services like vold then they don't use Exceptions. Maybe you should grep through the ASOP to see whether RTTI and/or Exceptions are used. Good luck ! Frank On 13 Jan., 00:47, Allen Curtis ajcurti...@gmail.com wrote: Hello, I am in the process of