Android Question Hardware Acceleration and Manifest

raphipps2002

Active Member
Licensed User
Longtime User
I follow the tutorial which said use the last line (in manifest), below, to utilize this feature but got this error...what is wrong?

Parsing code. 0.05
Compiling code. 0.25
Compiling layouts code. 0.02
Generating R file. Error
AndroidManifest.xml:14: error: No resource identifier found for attribute 'hardwareAccelerated' in package 'android'

Manifest Editor is as follows

'This code will be applied to the manifest file during compilation.
'You do not need to modify it in most cases.
'See this link for for more information: http://www.b4x.com/forum/showthread.php?p=78136
AddManifestText(
<uses-sdk android:minSdkVersion="11" />
<supports-screens android:largeScreens="true"
android:normalScreens="true"
android:smallScreens="true"
android:anyDensity="true"/>)
SetApplicationAttribute(android:icon, "@drawable/icon")
SetApplicationAttribute(android:label, "$LABEL$")
'End of default text.

SetApplicationAttribute(android:hardwareAccelerated, "true")
 
Top