我想知道设备是否已经植根?我看着反应本机库以及博览会,没有找到任何东西。

我也想在手机上列出已安装的应用程序。

最佳答案

您可以使用此库来识别电话是否已植根或嘲笑位置。

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()

10-04 20:04