Manifest file compiling problem

Brendon

Member
Licensed User
Longtime User
Hi All,
I've upgraded my B4A to 1.90 and now I've got a problema while debugging and compiling my app.

Error is
Compiling code. Error
Error parsing manifest script:
Line = 13, Word = (
Two parameters expected.


My manifest in Manifest editor is:
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: [url=http://www.b4x.com/forum/showthread.php?p=78136]Manifest Editor[/url]
AddManifestText(
<uses-sdk android:minSdkVersion="8" />
<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.
AddActivityText(<activity android:windowSoftInputMode="stateHidden" android:launchMode="singleTop" android:name="main")
AddActivityText(android:label="AgentiLite" android:screenOrientation="unspecified">)
AddActivityText(<intent-filter>)
AddActivityText(<action android:name="android.intent.action.CREATE_SHORTCUT"/>)
AddActivityText(<category android:name="android.intent.category.DEFAULT"/>)
AddActivityText(</intent-filter>)
AddActivityText(</activity>)

Can someone give me a hint?
Kind regards
 
Last edited by a moderator:
Top