Skip to content

Commit 90dac10

Browse files
authored
Update README.md
1 parent 2dd2482 commit 90dac10

File tree

1 file changed

+3
-3
lines changed

1 file changed

+3
-3
lines changed

README.md

Lines changed: 3 additions & 3 deletions
Original file line numberDiff line numberDiff line change
@@ -185,7 +185,7 @@ Java.perform(function (){
185185

186186
查看反编译得到的 smali 源码,smali 文件会将每个类作为一个单独文件保存,如下图所示的 `$1` 就是匿名内部类。
187187

188-
![innerclass](pictures/innerclass.png)
188+
![innerclass](./pictures/innerclass.png)
189189

190190
其余用法跟普通类是一样的。
191191

@@ -271,7 +271,7 @@ Java.perform(function (){
271271

272272
```js
273273
// 修改私有属性
274-
this.age.value = 999;
274+
this.age.value = 9999;
275275
```
276276

277277
## 进阶用法
@@ -488,7 +488,7 @@ function bytes2hex(array) {
488488

489489
例如,一个名为“Device Information”的 Service,可能包含多个 Characteristics,比如 “Manufacture Name String”,每个名字在编程中,都有一个统一的表示方法,唯一识别,这就是 UUID。
490490

491-
![BLE](pictures\BLE.png)
491+
![BLE](./pictures/BLE.png)
492492

493493
在 Android SDK 中,低功耗蓝牙使用`BluetoothGattCallback` 提供的回调,调用 `onCharacteristicWrite` /Read 方法进行读写,具体用法可参见 https://developer.android.com/reference/android/bluetooth/BluetoothGattCallback。
494494

0 commit comments

Comments
 (0)