The error message I am getting is this
jni/src/x86_64/@mmain_desktop.nim.c:254: error: undefined reference to 'atmdotdotatsdotdotatsdotnimbleatspkgsatspixieminus5dot0dot4atspixieatssimddotnim_Init000'
clang++: error: linker command failed with exit code 1 (use -v to see invocation)
Source code is this:
import wiish/mobileutil
import wiish/plugins/webview
var app = newWebviewApp()
app.start("https://www.wikipedia.org", title = "Wiish Webview Demo")
I'm basically just trying to get the basic webview example building and running on Android. I believe I've got Android studio set up and running correctly, but it seems like it is failing to link against the SIMD module in Pixie? Is there any additional configuration I'm expected to do?
The error message I am getting is this
Source code is this:
I'm basically just trying to get the basic webview example building and running on Android. I believe I've got Android studio set up and running correctly, but it seems like it is failing to link against the SIMD module in Pixie? Is there any additional configuration I'm expected to do?