屏幕关闭时 Android 中的主机卡模拟

问题描述 投票:0回答:1

这就是我设置 HCE 的方式: 清单.xml

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

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

<application
    android:allowBackup="true"
    android:dataExtractionRules="@xml/data_extraction_rules"
    android:fullBackupContent="@xml/backup_rules"
    android:icon="@mipmap/ic_launcher"
    android:label="@string/app_name"
    android:roundIcon="@mipmap/ic_launcher_round"
    android:supportsRtl="true"
    android:theme="@style/Theme.NFCHCE"
    tools:targetApi="33">
    <activity
        android:name=".MainActivity"
        android:exported="true"
        android:theme="@style/Theme.NFCHCE">
        <intent-filter>
            <action android:name="android.intent.action.MAIN" />
            <category android:name="android.intent.category.LAUNCHER" />
        </intent-filter>
    </activity>

    <service
        android:name=".MyHostApduService"
        android:exported="true"
        android:permission="android.permission.BIND_NFC_SERVICE">
        <intent-filter>
            <action android:name="android.nfc.cardemulation.action.HOST_APDU_SERVICE"/>
        </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/app_name"
    android:requireDeviceUnlock="false">
    <aid-group android:description="@string/app_name"
        android:category="payment">
        <aid-filter android:name="A0000000041010"/>
    </aid-group>
</host-apdu-service>

MyHostApduService.kt

class MyHostApduService : HostApduService() {
    override fun processCommandApdu(commandApdu: ByteArray?, extras: Bundle?): ByteArray {
        Log.d("commandApdu Test", "commandApdu - $commandApdu")
        commandApdu?.forEach {
            Log.d("commandApdu Test", "connected - $it")
        }
        return byteArrayOf(0x90.toByte(), 0x00.toByte())
    }


    override fun onDeactivated(reason: Int) {
        Log.d("commandApdu Test", "onDeactivated reason: $reason")
    }
}

根据官方文档。在 Android 设备中设置 HCE 时,如果我设置 android:requireDeviceUnlock="false",只要点击 NFC 读卡器,就会触发 processCommandApdu。当我测试它时,我无法使用此功能。我只能在设备屏幕打开时使其工作。即使应用程序从最近的应用程序中清除,它也可以工作。

在三星 A32 android 版本上测试。 13 和小米 12 Lite 安卓版。 14

android nfc hce
1个回答
0
投票

解锁和屏幕打开之间有区别。

如果您查看doc

HostApduService_requireDeviceScreenOn

公共静态最终int HostApduService_requireDeviceScreenOn

在将数据路由到此服务之前,设备是否必须打开屏幕。 > 默认为 true。

可以是布尔值,例如“true”或“false”。

由于您仅设置了 requireDeviceUnlock="false" 和默认的 requireDeviceScreenOn="True",那么这与您所看到的屏幕必须处于打开状态但不需要解锁的行为相匹配。

在 xml 中设置

requireDeviceScreenOn="false"
,然后重试。

© www.soinside.com 2019 - 2024. All rights reserved.