-
Notifications
You must be signed in to change notification settings - Fork 67
Add support for incoming application control #174
New issue
Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.
By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.
Already on GitHub? Sign in to your account
Add support for incoming application control #174
Conversation
Signed-off-by: Rafal Walczyna <[email protected]>
Signed-off-by: Rafal Walczyna <[email protected]>
@rwalczyna please rebase this PR first. |
* support in C# service application * changed IntPtr to SafeAppControlHandle
@rwalczyna |
I published a new engine release which includes the change flutter-tizen/engine#154. Please update the engine hash ( |
It is an implementation for https://docs.tizen.org/application/web/guides/app-management/app-controls/, but I believe that it is a similar mechanism as in quoted link. |
There was a problem hiding this comment.
Choose a reason for hiding this comment
The reason will be displayed to describe this comment to others. Learn more.
Thank you!
This change is needed to provide support for OnAppControlReceived callback.
As there is no way to pass object from embedder to plugins without changing plugins API, I have decided to create internal App Control Channel inside engine. I am open for discussion if there is any easier solution for this case.
Corresponding engine change: flutter-tizen/engine#154
Dart part of the plugin is currently in internal f-project repository.
I wanted to use most recent code of embedder and engine and I had to put this PR after #171, so #171 should land first.