反应本机:如何理解设备的根源?

时间:2017-10-08 14:24:54

标签: android reactjs react-native expo rooted-device

我想知道该设备是否已植根?我看了反应原生图书馆以及世博会,但没有找到任何东西。

此外,我想在手机上安装已安装的应用程序列表。

1 个答案:

答案 0 :(得分:1)

您可以使用此库来识别手机是否已植根或模拟位置。

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