尝试设置默认应用(基于主机的卡模拟)时,Android设置崩溃

时间:2018-06-23 10:43:12

标签: android nfc payment hce

我正在尝试实现Tap&Pay应用程序,因此需要与POS终端进行通信。为此,设备需要将我的应用程序设置为Tap&Pay功能的默认应用程序。无论是尝试要求用户以编程方式还是通过设置应用程序对其进行设置,Android设置都会崩溃。

我认为这与清单文件有关,因为崩溃显然是在列出点击付款应用程序的过程中发生的。

我已按照我在android开发人员页面https://developer.android.com/guide/topics/connectivity/nfc/hce上找到的基于主机的卡仿真的说明进行操作

manifest.xml:

<?xml version="1.0" encoding="utf-8"?>
<manifest xmlns:android="http://schemas.android.com/apk/res/android"
package="wizypay.brantner.wizy">

<uses-feature android:name="android.hardware.nfc.hce" android:required="true"/>

<uses-permission android:name="android.permission.NFC" />

<application
    android:allowBackup="true"
    android:icon="@mipmap/ic_wizy"
    android:label="@string/app_name"
    android:roundIcon="@mipmap/ic_wizy"
    android:supportsRtl="true"
    android:theme="@style/AppTheme">
    <activity android:name=".acitvities.LoginActivity">
        <intent-filter>
            <action android:name="android.intent.action.MAIN" />

            <category android:name="android.intent.category.LAUNCHER" />
        </intent-filter>
    </activity>
    <activity android:name=".acitvities.MainActivity" />
    <activity android:name=".acitvities.RegisterActivity"/>
    <service android:name=".services.HostCardEmulatorService" 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:

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

<aid-group android:description="@string/aiddescription"
    android:category="payment">
    <aid-filter android:name="A0000000043060"/>
    <aid-filter android:name="315041592E5359532E4444463031"/>
    <aid-filter android:name="325041592E5359532E4444463031"/>
    <aid-filter android:name="44464D46412E44466172653234313031"/>
    <aid-filter android:name="A00000000101"/>
    <aid-filter android:name="A000000003000000"/>
    <aid-filter android:name="A00000000300037561"/>
    <aid-filter android:name="A00000000305076010"/>
    ...
</aid-group>

</host-apdu-service>

我目前正在运行Android 8.1.0的Google Pixel上测试该应用程序

我希望有人知道会导致崩溃的原因, 预先感谢!

1 个答案:

答案 0 :(得分:1)

您的代码似乎没有任何问题。

我已经通过https://www.eftlab.co.uk/index.php/site-map/knowledge-base/211-emv-aid-rid-pix

找到了应用程序标识符列表

经过一番摸索,我发现android对可以注册的AID的可能数量设置了限制,似乎是260。可能您添加了太多?