From 57f474e5fabdf559b2ee30e492aa365dbc88843c Mon Sep 17 00:00:00 2001 From: Harsh Bhikadia Date: Sun, 25 Apr 2021 16:01:20 +0530 Subject: [PATCH] [readme] minor --- README.md | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/README.md b/README.md index 0b6244a..973571c 100644 --- a/README.md +++ b/README.md @@ -12,7 +12,7 @@ A Flutter plugin to pass Android Intents to the Flutter environment. -`Intent` in Android is the "payload" of the communication between and within apps. This plugin passes the `Intent`, which "started" the `Activity` (which is running flutter runtime) to the flutter environment. It also passes any "new Intent" that was received (via [`Activity.onNewIntent`](https://developer.android.com/reference/android/app/Activity#onNewIntent(android.content.Intent))) while the `Activity` was already "started". +`Intent` in Android is the "payload" for the communication between and within apps. This plugin passes the `Intent`, which "started" the `Activity` (which is running flutter runtime) to the flutter environment. It also passes any "new Intent" that was received (via [`Activity.onNewIntent`](https://developer.android.com/reference/android/app/Activity#onNewIntent(android.content.Intent))) while the `Activity` was already "started". If the `Intent` was "started" via `startActivityForResult`, then this plugin also sends additional information (package name and app signature) about the "calling" Android Component, and can send "result" back (via [`Activity.setResult`](https://developer.android.com/reference/android/app/Activity#setResult(int))) to it.