Android 尝试设置默认应用时设置崩溃(基于主机的卡模拟)
Android settings crash when trying to set default app (Host-based card emulation)
我正在尝试实现 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>
我目前正在 Google Pixel 运行 Android 8.1.0
上测试应用程序
我希望有人知道是什么导致了崩溃,
提前致谢!
您的代码似乎没有任何问题。
我找到了应用程序标识符列表 https://www.eftlab.co.uk/index.php/site-map/knowledge-base/211-emv-aid-rid-pix
玩了一下发现android对可以注册的AID数量设置了一个限制,好像是260个,可能是你加的太多了?
我正在尝试实现 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>
我目前正在 Google Pixel 运行 Android 8.1.0
上测试应用程序我希望有人知道是什么导致了崩溃, 提前致谢!
您的代码似乎没有任何问题。
我找到了应用程序标识符列表 https://www.eftlab.co.uk/index.php/site-map/knowledge-base/211-emv-aid-rid-pix
玩了一下发现android对可以注册的AID数量设置了一个限制,好像是260个,可能是你加的太多了?