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
In this context, xpcf::utils::dynamic_pointer_cast is actually an alias for boost::dynamic_pointer_cast.
The issue android/ndk#519 mentions a problem with dynamic_pointer_cast.
It does not seem related to boost, but the errors might be fixed by updating libc++_shared.so found in the NDK.
Maybe there is a lead here (replacing boost by std in xpcf for Android and use up to date libc++_shared.so)
Unity plugin does not work on Android for release/0.10.0.
By debugging the native pipeline library in Android Studio, I fell upon an error located here:
https://github.com/SolarFramework/Sample-FiducialMarker/blob/release/0.10.0/SolARPipeline_FiducialMarker/src/PipelineFiducialMarker.cpp#L74
This returns null:
In this context,
xpcf::utils::dynamic_pointer_castis actually an alias forboost::dynamic_pointer_cast.The issue android/ndk#519 mentions a problem with dynamic_pointer_cast.
It does not seem related to boost, but the errors might be fixed by updating
libc++_shared.sofound in the NDK.Maybe there is a lead here (replacing boost by std in xpcf for Android and use up to date
libc++_shared.so)