Hoi,
i "suddenly" got an error while compiling:
Here is the depenging part in the manifest:
i "suddenly" got an error while compiling:
AndroidManifest.xml:47: error: Error parsing XML: XML or Text declaration not at start of entity
Here is the depenging part in the manifest:
B4X:
<?xml version="1.0" encoding="utf-8"?>
<manifest xmlns:android="http://schemas.android.com/apk/res/android"
package="zjp.b4a.test01"
android:versionCode="1"
android:versionName=""
android:installLocation="preferExternal">
<uses-sdk android:minSdkVersion="4" />
<uses-permission android:name="android.permission.CALL_PHONE" />
<supports-screens
android:largeScreens="true"
android:normalScreens="true"
android:smallScreens="false" -------------->>>>>>>>>>>>>> ERROR LINE 47
android:anyDensity="true"/>
<application android:icon="@drawable/icon" android:label="MonTest">
<activity android:name=".main"
android:label="MonTest" android:screenOrientation="unspecified">
<intent-filter>
<action android:name="android.intent.action.MAIN" />
<category android:name="android.intent.category.LAUNCHER" />
</intent-filter>
</activity>
</application>
</manifest>