Skip to content

Commit

Permalink
Fix docs (#35)
Browse files Browse the repository at this point in the history
  • Loading branch information
Nep-Timeline authored Nov 9, 2023
1 parent 545cd59 commit 343b37e
Showing 1 changed file with 1 addition and 1 deletion.
2 changes: 1 addition & 1 deletion README.md
Original file line number Diff line number Diff line change
Expand Up @@ -48,7 +48,7 @@ dependencies {
1. Get all static fields including restricted ones from a class:
```java
var allStaticFields = HiddenApiBypass.getStaticFields(ApplicationInfo.class);
((Method).stream(allInstanceFields).filter(e -> e.getName().equals("HIDDEN_API_ENFORCEMENT_DEFAULT")).findFirst().get()).get(null);
((Method).stream(allStaticFields).filter(e -> e.getName().equals("HIDDEN_API_ENFORCEMENT_DEFAULT")).findFirst().get()).get(null);
```
1. Get specific class method or class constructor
```java
Expand Down

0 comments on commit 343b37e

Please sign in to comment.