To enable hardware acceleration in an Android 3.0+ app I can do this:
<application android:hardwareAccelerated="true" ... />
But the app won't build with that attribute present if I target an OS version pre-11. Is there a way to enable hardware acceleration in an app that targets both Honeycomb and prior, or is hardware acceleration only available for those creating apps that only work on 3.0+?
I had a look for a method on Activity but I don't see one.