*** DO NOT USE THESE 'X' VERSIONS ON GOOGLE PLAY OR YOUR ACCOUNT WILL BE TERMINATED! *** The X versions of DroidScript enable certian extra admin features which are banned for apps published to Google Play but are useful for private/commercial projects where APKs are expected to be 'side loaded'. For example full COSU (kiosk mode) and SMS interception are enabled in the 'X' versions. Enabling KIOSK (COSU) mode ========================== In Kiosk mode users will not be able to get to the Android System menus or escape your app unless you let them. This is ideal for information kiosks, machine controllers or POS systems. WARNINGS: - Once you have installed your app this way you will have to FACTORY RESET to remove the app. - You can ONLY update your app if it has the same package name and is signed with the same key. - You will not be able to access the top pull down menus on Android, so make sure you have a homescreen icon available to launch the Android settings editor before enabling KIOSK mode. - You can disable/enable kiosk mode programatically from within your app. PROCEDURE: 1. Connect to the device from a PC via ADB using a USB cable. (See here for instructions: https://www.xda-developers.com/install-adb-windows-macos-linux/) 2. Check that the ADB drivers are installed properly by typing the following (you should see your device listed) adb devices 3. Run the following command (change 'com.mycompany.myapp' part to match your app package name) adb shell dpm set-device-owner com.mycompany.myapp/com.smartphoneremote.ioioscript.DeviceAdminReceiver 4. Run your App and accept all the permission requests. 5. Your App is now a device Administrator and cannot be removed!