使主机卡仿真工作付款

时间:2013-11-18 18:30:08

标签: android nfc android-4.4-kitkat hce

我多年来一直在使用StackOverflow,在询问之前总是找到问题的答案,但今天我被卡住了。

因为我碰巧有一个工作的POS终端(EMV芯片和Pin类型),我想看看主机卡仿真。

终端可以使用最新版本的Tapp,所以我知道终端是好的,我的N7与Kitkat实际上可以付款(或者至少终端做了一系列好听的哔哔声和bloops,以及平板电脑推出Tapp的注册屏幕)。 所以我已经阅读了手册,写了很多行,目的是看到一些东西到达HostApduService。 部分工作,因为我可以在平板电脑的Tap& Pay设置中找到我的虚拟“卡”。

但是“付款”部分不起作用:只有两个来自POS终端的高音哔哔声而平板电脑上没有任何声音。我的HostApduService未被调用。

我尝试过各种不同的AID:真正的AID和愚蠢的AID,短而长,但没有任何效果。

使用Tapp时,LogCat说:

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

使用我的代码,LogCat是:

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

显然,使用我的代码,操作系统不会将HCE意图绑定到我的服务。但为什么呢?

你会在我的清单下面找到:

<?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>

我的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>

对于好的衡量标准,服务(正如您目前所看到的,它除了记录之外什么都不做):

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));
        // TODO Auto-generated method stub

    }

    @Override
    public byte[] processCommandApdu(byte[] arg0, Bundle arg1) {

        Log.i(TAG, "Hooza ! processCommandApdu");

        return arg0;
    }

}

如果你对它不起作用的想法有所了解,我将永远感激不尽。现在,我很难过。

此致

菲利普

4 个答案:

答案 0 :(得分:3)

EMV终端将选择的第一个小程序是PPSE小程序,因此您可以尝试将其添加到您的AID过滤器中:

<aid-filter android:name="325041592E5359532E4444463031"/>

我不知道您为什么要尝试使用HCE模拟付款,但这将永远不会被Visa和MasterCard批准,因为对于EMV交易,您需要一个需要存储在安全环境中的加密密钥。在最好的情况下,HCE可以用于卡不存在的交易。

答案 1 :(得分:0)

我在实验中注意到POS设备会尝试选择其支持的卡方案的AID。您可以通过查看“Visa”,“Mastercard”等符号来检查设备上支持的方案。页面上http://en.wikipedia.org/wiki/EMV处有这些方案的AID列表。因此,例如,如果POS支持万事达卡信用卡/借记卡,您可以尝试在apduservice.xml中注册主卡的AID:A0000000041010作为辅助过滤器,而无需注册PPSE的AID。试一试,请告诉我它是否有效。

编辑:请注意我一直在使用Vivo tech POS阅读器。

答案 2 :(得分:0)

包含PPSE,万事达卡和维萨卡的清单:

<aid-group android:description="paymentGroup" android:category="payment">  
    <aid-filter android:name="325041592E5359532E4444463031" android:description="ppse"/> 
    <aid-filter android:name="A0000000041010" android:description="MasterCard"/> 
    <aid-filter android:name="A0000000031010" android:description="Visa"/>
</aid-group>

答案 3 :(得分:0)

host-apdu-service结构示例:

对于HCE应用程序,确实需要包含PPSE AID条目:

apduservice.xml文件:

<host-apdu-service xmlns:android="http://schemas.android.com/apk/res/android"
    android:description="@string/servicedesc"
    android:requireDeviceUnlock="false" >

    <aid-group
        android:category="payment"
        android:description="@string/aiddescription" >

        <!-- Visa Proximity Payment System Environment - PPSE (2PAY.SYS.DDF01) -->
        <aid-filter android:name="325041592E5359532E4444463031" />

        <!-- VISA Debit/Credit (Classic)  -->
        <aid-filter android:name="A0000000031010" />

        <!-- VISA Credit -->
        <aid-filter android:name="A000000003101001" />

        <!-- VISA Debit -->
        <aid-filter android:name="A000000003101002" />

        <!-- VISA Electron (Debit) -->
        <aid-filter android:name="A0000000032010" />

        <!-- V PAY -->
        <aid-filter android:name="A0000000032020" />

        <!-- VISA Interlink -->
        <aid-filter android:name="A0000000033010" />

        <!-- MasterCard PayPass -->
        <aid-filter android:name="A00000000401" />

        <!-- MasterCard Credit -->
        <aid-filter android:name="A0000000041010" />

        <!-- American Express -->
        <aid-filter android:name="A000000025" />

        <!-- BRADESCO -->
        <aid-filter android:name="F0000000030001" />

    </aid-group>

</host-apdu-service>