You can also write simple Apps without the need of the whole Android SDK. If you are non-technical you can use scripts which others have created. There will be a library of useful scripts published on the project's web site. A script can be downloaded to App Reactor by scanning a QR code.
Features:
- NOW integration with Facebook and Twitter
- scan (QR code) & 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, content providers, media, files, simple UI elements such as dialogs, alerts or notifications, do HTTP requests, use location, toggle radio and more...
App Reactor FULL
Here is a simple example script which turns off your Wifi if you arrive home:while(true) {
// put your home location here
iAmHome = near(50.03806166078905, 14.329100847244263, 1500);
if (iAmHome) {
log("At home");
enableWifi(true);
}
sleep(120000);
}
Version: 1.3.1
Size: 327 KB
Required : Android 2.1 and up