我想知道设备是否已root?我查看了 react native library 以及 expo 并没有找到任何东西。
我还想在手机上列出已安装的应用程序。
我想知道设备是否已root?我查看了 react native library 以及 expo 并没有找到任何东西。
我还想在手机上列出已安装的应用程序。
您可以使用此库来识别手机是否已植根或模拟位置。
https://github.com/GantMan/jail-monkey
import JailMonkey from 'jail-monkey'
// is this device JailBroken on iOS/Android?
JailMonkey.isJailBroken()
// Can this device mock location - no need to root!
JailMonkey.canMockLocation()
// Check if device violates any of the above
JailMonkey.trustFall()
// (ANDROID ONLY) Check if application is running on external storage
JailMonkey.isOnExternalStorage()