mirror of
https://github.com/shuto-cn/cordova-plugin-root-detection.git
synced 2026-04-19 00:01:31 +08:00
6 lines
167 B
JavaScript
6 lines
167 B
JavaScript
var exec = require('cordova/exec');
|
|
|
|
exports.isDeviceRooted = function(arg0, success, error) {
|
|
exec(success, error, "RootDetection", "isDeviceRooted", [arg0]);
|
|
};
|