hourglass_full Your download should start automatically in a few seconds...

Download Reactor Unlock_Latest Version.apk from Apk-Dl Server

Thank you for using Apk-Dl.com to download the apk file (Reactor Unlock_Latest Version.apk),

If the download doesn't start automatically in a few seconds, please click here to access the download URL directly.

Note: Download and save the apk file to your Android Phone's SD card and install it manually onto the Android device.

Description

This is an Unlock for Reactor to allow you runmultiple scripts in parallel. In order to make this Unlock runningyou need to have Reactor installed.

Android + Tasker + Grease Monkey + Radiation = Reactor (akaAppReactor)

Reactor is to Android what Grease Monkey is to Firefox. It is asimple yet powerful scripting engine for Android which gives youinstant access to many Android OS functions.

With Reactor you can makes your Apps talk together and worktogether as it supports Intents and Content Providers. You canautomate many common tasks with custom scripts.

You can also write simple Apps without the need of the wholeAndroid SDK.

If you are non-technical you can use scripts which others havecreated. There will be a library of useful scripts published on theproject's web site. A script can be downloaded to App Reactor byscanning a QR code.

Features:
- scan & run
- background service with runs your scripts
- auto-start after boot
- syntax highlighting
- debug mode
- a library of functions which allows you to use intents, contentproviders, media, files, simple UI elements such as dialogs, alertsor notifications, do HTTP requests, use location, toggle radio andmore...

Here is a simple example script which turns off your Wifi if youarrive home:
while(true) {
// put your home location here
iAmHome = near(50.03806166078905, 14.329100847244263, 1500);
if (iAmHome) {
log("At home");
enableWifi(true);
}
sleep(120000);
}

Please find more examples on your website.