Update home documentation

This commit is contained in:
2023-01-26 01:13:25 +08:00
parent 7333b885fd
commit 36b7393902
2 changed files with 2 additions and 0 deletions

View File

@@ -49,6 +49,7 @@ With `Kotlin` elegant `lambda` and `YukiReflection`, you can make your reflectio
```kotlin
Class.forName("android.os.SystemProperties")
.getDeclaredMethod("get", String::class.java, String::class.java)
.apply { isAccessible = true }
.invoke(null, "ro.system.build.fingerprint", "none")
```

View File

@@ -49,6 +49,7 @@
```kotlin
Class.forName("android.os.SystemProperties")
.getDeclaredMethod("get", String::class.java, String::class.java)
.apply { isAccessible = true }
.invoke(null, "ro.system.build.fingerprint", "none")
```