Android Question Version compatibility

jonta

Member
Licensed User
Longtime User
<?xml version="1.0" encoding="UTF-8"?>
@namespace html url(http://www.w3.org/1999/xhtml); :root { font:small Verdana; font-weight: bold; padding: 2em; padding-left:4em; } * { display: block; padding-left: 2em; } html|style { display: none; } html|span, html|a { display: inline; padding: 0; font-weight: normal; text-decoration: none; } html|span.block { display: block; } *[html|hidden], span.block[html|hidden] { display: none; } .expand { display: block; } .expand:before { content: '+'; color: red; position: absolute; left: -1em; } .collapse { display: block; } .collapse:before { content: '-'; color: red; position: absolute; left:-1em; } <manifest android:installLocation="preferExternal" android:versionName="1.0.0.4(FREE)" android:versionCode="6" package="aplimedia.repartirgastos" xmlns:android="http://schemas.android.com/apk/res/android"><uses-sdk android:minSdkVersion="4"/><supports-screens android:anyDensity="true" android:smallScreens="true" android:normalScreens="true" android:largeScreens="true"/><uses-permission android:name="android.permission.WRITE_EXTERNAL_STORAGE"/><uses-permission android:name="android.permission.INTERNET"/><application android:label="SplitCosts" android:icon="@drawable/icon"><activity android:name=".main" android:label="SplitCosts" android:screenOrientation="unspecified" android:launchMode="singleTop" android:windowSoftInputMode="stateHidden"><intent-filter><action android:name="android.intent.action.MAIN"/><category android:name="android.intent.category.LAUNCHER"/></intent-filter><intent-filter><action android:name="android.intent.action.VIEW"/><category android:name="android.intent.category.DEFAULT"/><category android:name="android.intent.category.BROWSABLE"/><data android:scheme="http"/><data android:host="www.aplimedia.com"/></intent-filter></activity><activity android:name=".menu" android:label="SplitCosts" android:screenOrientation="unspecified" android:launchMode="singleTop" android:windowSoftInputMode="stateHidden"> </activity><activity android:name=".save" android:label="SplitCosts" android:screenOrientation="unspecified" android:launchMode="singleTop" android:windowSoftInputMode="stateHidden"> </activity><activity android:name=".load" android:label="SplitCosts" android:screenOrientation="unspecified" android:launchMode="singleTop" android:windowSoftInputMode="stateHidden"> </activity><activity android:name=".result" android:label="SplitCosts" android:screenOrientation="unspecified" android:launchMode="singleTop" android:windowSoftInputMode="stateHidden"> </activity><activity android:name=".ayuda" android:label="SplitCosts" android:screenOrientation="unspecified" android:launchMode="singleTop" android:windowSoftInputMode="stateHidden"> </activity><activity android:name=".splash" android:label="SplitCosts" android:screenOrientation="unspecified" android:launchMode="singleTop" android:windowSoftInputMode="stateHidden"> </activity><activity android:name=".ayudaresultado" android:label="SplitCosts" android:screenOrientation="unspecified" android:launchMode="singleTop" android:windowSoftInputMode="stateHidden"> </activity><service android:name="anywheresoftware.b4a.samples.httputils2.httputils2service"> </service><receiver android:name="anywheresoftware.b4a.samples.httputils2.httputils2service$httputils2service_BR"> </receiver></application></manifest>
 
Upvote 0

jonta

Member
Licensed User
Longtime User
Nothing.

'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" />
<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("main",
<intent-filter>
<action android:name="android.intent.action.VIEW" />
<category android:name="android.intent.category.DEFAULT"></category>
<category android:name="android.intent.category.BROWSABLE"></category>
<data android:scheme="http" />
<data android:host="www.aplimedia.com" />
</intent-filter> )
 
Upvote 0
Top