反转 Android BLE 应用程序未显示在 logcat 中

逆向工程 安卓 蓝牙
2021-07-01 05:39:07

我是倒车新手,我想倒车 BLE Android 应用程序。(jbsmartbulb)

我在包com.actions.ibluz.b 中看到过这个调用:

     public void onCharacteristicWrite(final BluetoothGatt bluetoothGatt, final BluetoothGattCharacteristic bluetoothGattCharacteristic, final int n) {
            if (n == 0 || n == 13) {
                e.this.a(bluetoothGattCharacteristic);
                return;
            }
            Log.w("BluzDeviceBle", "onCharacteristicWrite received: " + n);
        }

和其他 Log BluzDeviceBle 调用,但是当我用 adb logcat 插入我的智能手机时,我在日志中看不到任何 BluzDeviceBle。

你知道问题是什么吗?或者我应该怎么做?

谢谢

0个回答
没有发现任何回复~