From 06f1de1b262d7612497e76463d8cc34ba7f49832 Mon Sep 17 00:00:00 2001 From: brunoais Date: Sat, 10 Apr 2021 17:57:56 +0100 Subject: [PATCH] Be more explicit about minimum requirements --- RUN_COMMAND-Intent.md | 4 ++-- 1 file changed, 2 insertions(+), 2 deletions(-) diff --git a/RUN_COMMAND-Intent.md b/RUN_COMMAND-Intent.md index b375075..e27856a 100644 --- a/RUN_COMMAND-Intent.md +++ b/RUN_COMMAND-Intent.md @@ -1,10 +1,10 @@ ## RUN_COMMAND Intent -Third-party apps that are not part of Termux world can run commands in Termux app context by either sending an intent to `RunCommandService` or becoming a plugin host for the `termux-tasker` plugin client. +Since `0.95` (Android 7), third-party apps that are not part of Termux world can run commands in Termux app context by either sending an intent to `RunCommandService` or becoming a plugin host for the `termux-tasker` plugin client. The intent can either be sent with `am startservice` command or with Java. Getting command result back is also possible for intents sent with Java, but not possible with `am startservice` command and it will require Termux app version `>= 0.109`. -You may also want to check out `termux-tasker` [README](https://github.com/termux/termux-tasker). +You may also want to check out `termux-tasker` [README](https://github.com/termux/termux-tasker) (available for android 5+). ### Setup Instructions