Hi,
you are right.
Caused by: com.xtify.android.sdk.InvalidFormatException: Could not read the api key. No meta data found in the manifest file.
at com.xtify.android.sdk.PersistentLocationManager.a(Unknown Source)
at com.xtify.android.sdk.PersistentLocationManager.c(Unknown Source)
at com.xtify.android.sdk.PersistentLocationManager.a(Unknown Source)
at com.xtify.android.sdk.PersistentLocationManager.<init>(Unknown Source)
at com.nejo.android.xtify.nejoXTIFY.initialize(nejoXTIFY.java:27)
at Xtracard.Customer.xti._service_create(xti.java:102)
at java.lang.reflect.Method.invokeNative(Native Method)
at java.lang.reflect.Method.invoke(Method.java:507)
at anywheresoftware.b4a.BA.raiseEvent2(BA.java:167)
... 13 more
The manifest editor says:
AddApplicationText (<receiver android:name="com.nejo.android.xtify.NejoXtyreceiver">
<intent-filter android
riority="9999">
<action android:name="com.xtify.android.sdk.SHOW_NOTIFICATION" />
<!-- KEEP THE FORWARD SLASH IN FRONT OF THE APP KEY ON THE LINE BELOW -->
<data android:scheme="notif" android:host="notification.xtify.com"
android
athPrefix="/a0ef3978-dcb9-424d-9b03-1567f5814817" />
</intent-filter>
</receiver>)
The AndroidManifest.xml.
<?xml version="1.0" encoding="utf-8"?>
<manifest
xmlns:android="http://schemas.android.com/apk/res/android"
package="Xtracard.Customer"
android:versionCode="1"
android:versionName=""
android:installLocation="internalOnly">
<uses-sdk android:minSdkVersion="4" android:targetSdkVersion="14"/>
<supports-screens android:largeScreens="true"
android:normalScreens="true"
android:smallScreens="true"
android:anyDensity="true"/>
<uses-permission android:name="android.permission.WRITE_EXTERNAL_STORAGE"/>
<uses-permission android:name="android.permission.INTERNET"/>
<uses-permission android:name="android.permission.BLUETOOTH"/>
<uses-permission android:name="android.permission.BLUETOOTH_ADMIN"/>
<application
android:icon="@drawable/icon"
android:label="Xtra.Card">
<receiver android:name="com.nejo.android.xtify.NejoXtyreceiver">
<intent-filter android
riority="9999">
<action android:name="com.xtify.android.sdk.SHOW_NOTIFICATION" />
<!-- KEEP THE FORWARD SLASH IN FRONT OF THE APP KEY ON THE LINE BELOW -->
<data android:scheme="notif" android:host="notification.xtify.com"
android
athPrefix="/a0ef3978-dcb9-424d-9b03-1567f5814817" />
</intent-filter>
</receiver>
<activity
android:windowSoftInputMode="stateHidden"
android:launchMode="singleTop"
android:name=".main"
android:label="Xtra.Card"
android:screenOrientation="portrait">
<intent-filter>
<action android:name="android.intent.action.MAIN" />
<category android:name="android.intent.category.LAUNCHER" />
</intent-filter>
</activity>
<service android:name=".httputils2service">
</service>
<receiver android:name=".httputils2service$httputils2service_BR">
</receiver>
<service android:name=".xti">
</service>
<receiver android:name=".xti$xti_BR">
</receiver>
</application>
</manifest>
Thanks again in advance