Fixed: See post #5
This is my first attempt at posting to the Android Market and I am getting an apk error: Market requires versionName.
I am using the preferences module so I have a "locked" manifest file. The contents are below. I am also attaching the apk file I am trying to upload.
Any thoughts would be appreciated.
~Joe
(Using B4A 1.60).
----------------------------------------------------------
This is my first attempt at posting to the Android Market and I am getting an apk error: Market requires versionName.
I am using the preferences module so I have a "locked" manifest file. The contents are below. I am also attaching the apk file I am trying to upload.
Any thoughts would be appreciated.
~Joe
(Using B4A 1.60).
----------------------------------------------------------
B4X:
<?xml version="1.0" encoding="utf-8"?>
<manifest xmlns:android="http://schemas.android.com/apk/res/android"
package="dtg.notify"
android:versionCode="1"
android:versionName="v1.11.19"
android:installLocation="internalOnly">
<uses-sdk android:minSdkVersion="4" />
<supports-screens
android:largeScreens="true"
android:normalScreens="true"
android:smallScreens="true"
android:anyDensity="true"/>
<application android:icon="@drawable/icon" android:label="PentaDee Private Notification">
<activity android:windowSoftInputMode="stateHidden" android:launchMode="singleTop" android:name=".main"
android:label="PentaDee Private Notification" android:screenOrientation="unspecified">
<intent-filter>
<action android:name="android.intent.action.MAIN" />
<category android:name="android.intent.category.LAUNCHER" />
</intent-filter>
</activity>
<service android:name="rssreader"></service>
<receiver android:name="rssreader$rssreader_BR">
</receiver>
<activity android:name="anywheresoftware.b4a.objects.preferenceactivity"/>
</application>
<uses-permission android:name="android.permission.INTERNET"/>
<uses-permission android:name="android.permission.VIBRATE"/>
</manifest>
Last edited: