You signed in with another tab or window. Reload to refresh your session.You signed out in another tab or window. Reload to refresh your session.You switched accounts on another tab or window. Reload to refresh your session.Dismiss alert
When building a uwp app against hermes-windows I am finding that a bunch of functionality that is defined in jsi.cpp is missing from the dll. Namely, destructors for a lot of the types are missing, and all of the implementation for HostObject too.
The text was updated successfully, but these errors were encountered:
…oft#19)
Summary:
Treat `getMethod<JFoo()>` as equivalent to `getMethod<JniType<JFoo>()>`,
which is equivalent to `getMethod<JFoo::javaobject()>`.
Update all call sites. Some were calling getMethod<local_ref<JFoo>>,
which is equivalent.
Pull Request resolved: facebookincubator/fbjni#19
Test Plan: CI
Reviewed By: cjhopman
Differential Revision: D18121237
Pulled By: dreiss
fbshipit-source-id: 2f0b6fc1909599256cdc708e721c9d877492d54d
I haven't tried this recently. I think it would be useful to have some basic sanity test in the form of an app that only starts up a hermes engine and runs some JS (all separate from RNW).
I haven't tried this recently. I think it would be useful to have some basic sanity test in the form of an app that only starts up a hermes engine and runs some JS (all separate from RNW).
When building a uwp app against hermes-windows I am finding that a bunch of functionality that is defined in jsi.cpp is missing from the dll. Namely, destructors for a lot of the types are missing, and all of the implementation for
HostObject
too.The text was updated successfully, but these errors were encountered: