collinprice / com.collinprice.rooted

A Titanium module which provides a function to check if a device has been Jailbroken (iOS), or Rooted (Android).

Geek Repo:Geek Repo

Github PK Tool:Github PK Tool

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.....");
}

About

A Titanium module which provides a function to check if a device has been Jailbroken (iOS), or Rooted (Android).

License:MIT License


Languages

Language:Python 59.8%Language:Objective-C 23.5%Language:Java 14.4%Language:JavaScript 2.3%