O/S Android 11.我已经开发了一个带有BLE扫描的应用程序。它不会与BLE设备进行任何连接。它只获取附近设备列表。应用程序运行正常。每次停止和启动扫描时,我都会在Logcat中看到以下注册的错误。有谁能告诉我出了什么问题吗?
E/BtGatt.GattService: [GSIM LOG]: gsimLogHandler, msg: MESSAGE_SCAN_START, appName: com.ttt.ttt.vctap, scannerId: 11, reportDelayMillis=0
E/BtGatt.GattService: [GSIM LOG]: gsimLogHandler, msg: MESSAGE_SCAN_STOP, appName:com.ttt.ttt.vctap, scannerId: 11, reportDelayMillis=0
发布于 2021-09-25 14:38:30
问题中的两个日志行:
E/BtGatt.GattService: [GSIM LOG]: gsimLogHandler, msg: MESSAGE_SCAN_START, appName: com.ttt.ttt.vctap, scannerId: 11, reportDelayMillis=0
E/BtGatt.GattService: [GSIM LOG]: gsimLogHandler, msg: MESSAGE_SCAN_STOP, appName:com.ttt.ttt.vctap, scannerId: 11, reportDelayMillis=0
不指示任何错误。它们表示正常运行。
这些日志行特定于三星设备。他们指出,带有applicationId com.ttt.ttt.vctap的安卓应用程序已经开始了BLE扫描(第一行)。第二个日志行指示扫描已停止。
https://stackoverflow.com/questions/69322378
复制相似问题