Skip to content

Commit

Permalink
Corrected instruction for use
Browse files Browse the repository at this point in the history
  • Loading branch information
littleWhiteDuck committed May 22, 2022
1 parent 463602a commit 19455ed
Showing 1 changed file with 3 additions and 3 deletions.
6 changes: 3 additions & 3 deletions README_EN.md
Original file line number Diff line number Diff line change
Expand Up @@ -94,7 +94,7 @@ The following are the writing rules: (You can download *[HookTest.apk](/HookTest
#### 2.1. Primitive type

| Type (java, smali) | Examples of value ​​ | Note |
| ------------------ | -------------------- | --------- ----------------------- |
| ------------------ | -------------------- | ------------- |
| boolean (boolean, Z) | true, false | |
| int(int, I) | 1, 2, 3 | |
| long(long, J) | 1l, 120000L, 123456l | Note: Number + 'L' |
Expand All @@ -117,7 +117,7 @@ The following are the writing rules: (You can download *[HookTest.apk](/HookTest
##### 2.3.2 Special cases

| Special Strings | Examples of Values ​​| Notes |
| ------------ | -------------------------------- | --- -------------------------------------------------- ------- |
| ------------ | -------------------------------- | ------------------------------------------ |
| Number | 111s, 2002s | Commonly seen in "111111", but in this software you need to add s after the number, if you don't add s, it will be converted into a number, which may cause the target application to crash |
| Boolean | trues, falses | Common in "true" and "false", but in this software, you need to add s after the boolean value. If you do not add s, it will be converted to a boolean value, which may cause the target application to crash |
| null | nulls | Commonly seen in "null", but in this software, you need to add s after null. If you do not add s, it will be converted to null, which may lead to a null pointer in the target application |
Expand Down Expand Up @@ -437,7 +437,7 @@ public class MainActivity extends Acitvity {
#### record parameter value
> The parameter values ​​of the method will be recorded, go to the record page to view,
> The parameter values of the method will be recorded, go to the record page to view,
> If the parameter is an array or list, it will be converted to json format
#### record return value
Expand Down

0 comments on commit 19455ed

Please sign in to comment.