fix: convert intent.categories to List

`Intent.categories` is `Set` but is not supported by "fluter/dart"
This commit is contained in:
Harsh Bhikadia 2021-06-18 17:56:12 +05:30
parent 22894b380a
commit 1f74c72b44

View file

@ -42,7 +42,7 @@ class ReceiveIntentPlugin : FlutterPlugin, MethodCallHandler, EventChannel.Strea
"fromSignatures" to fromPackageName?.let { getApplicationSignature(context, it) },
"action" to intent.action,
"data" to intent.dataString,
"categories" to intent.categories,
"categories" to intent.categories.toList(),
"extra" to intent.extras?.let { bundleToJSON(it).toString() }
)
//Log.e("ReceiveIntentPlugin", "intentMap: $intentMap")