Skip to content

Support Native Image for Edge #2041

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

Open
wants to merge 1 commit into
base: master
Choose a base branch
from

Conversation

tnikolai2
Copy link

Lambda expressions are replaced by classes because GraalVM Native Image does not support the use of lambda expressions in jni callback functions.

Also need add to jni-config.json:

[
  {
    "name": "org.eclipse.swt.browser.Edge$HandleCoreWebView2SwtCallback",
    "methods": [
      {
        "name": "Invoke",
        "parameterTypes": ["long", "long"]
      }
    ]
  },
  {
    "name": "org.eclipse.swt.browser.Edge$HandleCoreWebView2SwtHost",
    "methods": [
      {
        "name": "CallJava",
        "parameterTypes": ["int", "long", "long"]
      }
    ]
  }
]

Also need add to jni-config.json:
[
  {
    "name": "org.eclipse.swt.browser.Edge$HandleCoreWebView2SwtCallback",
    "methods": [
      {
        "name": "Invoke",
        "parameterTypes": ["long", "long"]
      }
    ]
  },
  {
    "name": "org.eclipse.swt.browser.Edge$HandleCoreWebView2SwtHost",
    "methods": [
      {
        "name": "CallJava",
        "parameterTypes": ["int", "long", "long"]
      }
    ]
  }
]
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment
Labels
None yet
Projects
None yet
Development

Successfully merging this pull request may close these issues.

1 participant