我想知道该设备是否已植根?我看了反应原生图书馆以及世博会,但没有找到任何东西。
此外,我想在手机上安装已安装的应用程序列表。
答案 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()