Skip to content

Latest commit

 

History

History
16 lines (11 loc) · 535 Bytes

README.md

File metadata and controls

16 lines (11 loc) · 535 Bytes

Appcelerator Titanium Rooted Module

This module provides a function to check if a device has been Jailbroken (iOS), or Rooted (Android). Check the Releases tab for downloads.

Install

Please check the Appcelerator documentation for instructions on how to install this module

Usage

var Rooted = require('com.collinprice.rooted');
if (Rooted.isRooted()) {
	Ti.API.info("DEVICE IS ROOTED!!!");
} else {
	Ti.API.info("DEVICE IS NOT ROOTED.....");
}