Files
cordova-plugin-root-detection/www/rootdetection.js
langxiankui 59743503dd Update rootdetection.js
添加模拟器识别功能,目前仅能识别Android SDK中的模拟器
2018-11-14 13:44:19 +08:00

10 lines
268 B
JavaScript

var exec = require('cordova/exec');
exports.isDeviceRooted = function(success, error) {
exec(success, error, "RootDetection", "isDeviceRooted", []);
};
exports.isEmulate = function (success, error) {
exec(success, error, "RootDetection", "isEmulate", []);
}