Android Question Manifest file error.???

metzeller_2013

Member
Licensed User
Longtime User
Error code:
B4X:
Parsing code.                          0.38
Compiling code.                        Error
Error parsing manifest script:
Line = 10, Word = (

Manifest Code:

B4X:
'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="4" android:targetSdkVersion="14"/>
<supports-screens android:largeScreens="true"
    android:normalScreens="true"
    android:smallScreens="true"
    android:anyDensity="true"/>)
SetApplicationAttribute(releasing, android:windowSoftInputMode, adjustPan|stateHidden)
SetApplicationAttribute(android:icon, "@drawable/icon")
SetApplicationAttribute(android:label, "$LABEL$")
'End of default text.

What seems to be causing the error? Just the line with adjustPan
 

Douglas Farias

Expert
Licensed User
Longtime User
B4X:
SetActivityAttribute(main, android:windowSoftInputMode, adjustResize|stateHidden)
?
 
Upvote 0
Top