This is more of a cry for guidance than an issue.
We have a chrome app that works on all desktop OS, and then we wrap it with cca according to your instructions and works for Android nicely.
We added a .cpp library to our chrome app with the help of Native Client and it works for desktops. We tried the same process with cca and the app is not loading which makes perfect sense. How can I achieved the desired effect?
We are thinking of writing a Cordova plugin that will load the c++ library with JNI and will do the mapping from JavaScript to c++, but I was wondering if there is another way, so we can keep it consistent and both apps use the native client approach but with different arch builds for the library for example.
This is more of a cry for guidance than an issue. We have a chrome app that works on all desktop OS, and then we wrap it with
cca
according to your instructions and works for Android nicely. We added a.cpp
library to our chrome app with the help ofNative Client
and it works for desktops. We tried the same process withcca
and the app is not loading which makes perfect sense. How can I achieved the desired effect? We are thinking of writing a Cordova plugin that will load thec++
library withJNI
and will do the mapping fromJavaScript
toc++
, but I was wondering if there is another way, so we can keep it consistent and both apps use the native client approach but with different arch builds for the library for example.