Android Question AndroidManifest.xml: 20: error: No resource identifier found for attribute 'hardwareAccelerated' in

samperizal

Active Member
Licensed User
Longtime User
Greetings.

I am testing the library jPCT-AE

and gives the following error

AndroidManifest.xml: 20: error: No resource identifier found for attribute 'hardwareAccelerated' in package 'android'

manifiest

'This code will be Applied to the manifest file During compilation.
'You do not need to modify it in MOST cases you.
'See this link for for more information: http://www.b4x.com/forum/showthread.php?p=78136
AddManifestText (
<uses-sdk android: minSdkVersion = "4" android: targetSdkVersion = "14" />
<supports-screens android: largeScreens = "true"
android: normalScreens = "true"
android: smallScreens = "true"
android: anyDensity = "true" />)
SetApplicationAttribute (android: icon, "@ drawable / icon")
SetApplicationAttribute (android: label "$ LABEL $")
AddManifestText (<uses-feature android: glEsVersion = "0x00010000" android: required = "true" />)
SetApplicationAttribute (android: hardwareAccelerated, "true")
AddManifestText (<uses-sdk android: minSdkVersion = "9" android: targetSdkVersion = "11" />)
'End of default text.
 
Top