I have been using StackOverflow for many years, I always find answers to my questions before I even ask them, but today I'm stuck.
Since I have a working POS terminal (type EMV Chip & Pin), I wanted to see the emulation of the host card.
The terminal works with the latest version of Tapp, so I know that the terminal is good, and that my N7 with Kitkat can really make a payment (or at least the terminal makes a series of good sound signals and bloops, and the tablet launches the Tapp registration screen). So I read the manual and wrote a few lines in order to see how something arrived on mine HostApduService. It partially works, since I can find my dummy βcardβ in the Tap & Pay settings on the tablet.
But the βpaymentβ part does not work: only two high-pitched sounds from the POS terminal and nothing on the tablet. Mine is HostApduServicenot being called.
I tried all kinds of AID: real and stupid, short and long, but nothing works.
When using Tapp, LogCat says:
11-17 14:51:47.690: D/BrcmNfcJni(3183): RoutingManager::stackCallback: event=0x18
11-17 14:51:47.690: D/HostEmulationManager(3183): notifyHostEmulationActivated
11-17 14:51:47.690: D/BrcmNfcJni(3183): RoutingManager::stackCallback: event=0x17
11-17 14:51:47.690: D/BrcmNfcJni(3183): RoutingManager::stackCallback: NFA_CE_DATA_EVT; h=0x302; data len=20
11-17 14:51:47.690: D/HostEmulationManager(3183): notifyHostEmulationData
11-17 14:51:47.700: D/HostEmulationManager(3183): Service already bound as payment service.
11-17 14:51:47.700: D/HostEmulationManager(3183): Binding to existing service
11-17 14:51:49.932: D/BrcmNfcJni(3183): RoutingManager::stackCallback: event=0x19
11-17 14:51:49.932: D/HostEmulationManager(3183): notifyHostEmulationDeactivated
11-17 14:51:49.932: E/BrcmNfcNfa(3183): UICC[0x0] is not activated
And with my LogCat code:
11-17 14:41:52.079: D/BrcmNfcJni(3183): RoutingManager::stackCallback: event=0x18
11-17 14:41:52.079: D/HostEmulationManager(3183): notifyHostEmulationActivated
11-17 14:41:52.089: D/BrcmNfcJni(3183): RoutingManager::stackCallback: event=0x17
11-17 14:41:52.089: D/BrcmNfcJni(3183): RoutingManager::stackCallback: NFA_CE_DATA_EVT; h=0x302; data len=20
11-17 14:41:52.089: D/HostEmulationManager(3183): notifyHostEmulationData
11-17 14:41:53.340: D/BrcmNfcJni(3183): RoutingManager::stackCallback: event=0x19
11-17 14:41:53.340: D/HostEmulationManager(3183): notifyHostEmulationDeactivated
11-17 14:41:53.340: E/BrcmNfcNfa(3183): UICC[0x0] is not activated
Obviously, with my code, the OS does not associate the intention of HCE with my service. But why?
You will find my manifest below:
<?xml version="1.0" encoding="utf-8"?>
<manifest xmlns:android="http://schemas.android.com/apk/res/android"
package="net.remolagi.hcetestbanque2"
android:versionCode="1"
android:versionName="1.0" >
<uses-sdk
android:minSdkVersion="19"
android:targetSdkVersion="19" />
<uses-permission android:name="android.permission.NFC" />
<uses-feature
android:name="android.hardware.nfc.hce"
android:required="true" />
<application
android:allowBackup="true"
android:icon="@drawable/ic_launcher"
android:label="@string/app_name"
android:theme="@style/AppTheme" >
<activity
android:name="net.remolagi.hcetestbanque2.MainActivity"
android:label="@string/app_name" >
<intent-filter>
<action android:name="android.intent.action.MAIN" />
<category android:name="android.intent.category.LAUNCHER" />
</intent-filter>
</activity>
<service
android:name=".MyHCEService"
android:exported="true"
android:permission="android.permission.BIND_NFC_SERVICE" >
<intent-filter>
<action android:name="android.nfc.cardemulation.action.HOST_APDU_SERVICE" />
<category android:name="android.intent.category.DEFAULT" />
</intent-filter>
<meta-data
android:name="android.nfc.cardemulation.host_apdu_service"
android:resource="@xml/apduservice" />
</service>
</application>
</manifest>
my apduservice.xml:
<?xml version="1.0" encoding="UTF-8"?>
<host-apdu-service xmlns:android="http://schemas.android.com/apk/res/android"
android:description="@string/servicedesc"
android:requireDeviceUnlock="true"
android:apduServiceBanner="@drawable/payment_banner">
<aid-group android:description="@string/aiddescription"
android:category="payment">
<aid-filter android:name="A0000000031010"/>
</aid-group>
</host-apdu-service>
And for a good measure, the service (as you can see at the moment, it does nothing except the magazine):
package net.remolagi.hcetestbanque2;
import android.nfc.cardemulation.HostApduService;
import android.os.Bundle;
import android.util.Log;
public class MyHCEService extends HostApduService {
private static final String TAG = "MyHCEService";
@Override
public void onDeactivated(int arg0) {
Log.i(TAG, "OnDeactivated - arg0 : " + String.valueOf(arg0));
}
@Override
public byte[] processCommandApdu(byte[] arg0, Bundle arg1) {
Log.i(TAG, "Hooza ! processCommandApdu");
return arg0;
}
}
If you have any ideas on why this does not work, I will be forever grateful. So far I'm at a standstill.
Hello
Philip