Apply matrix-js-sdk #13663
-
How to use matrix-js-sdk in titanium? Do I have to download the browser version and add it in the same way like d3.js to a webView or add it to the app/lib directory and load it via |
Beta Was this translation helpful? Give feedback.
Replies: 1 comment 4 replies
-
You have to try if it works. Can be either the web version as you've explained or the npm version (https://blog.axway.com/learning-center/software-development/api-development/using-npm-packages-in-titanium). But it depends on the core packages that the module might require if it works or not. The solution that works but involves a lot more development: use the native SDKs and create a module. E.g. with https://github.com/matrix-org/matrix-android-sdk2 for Android. |
Beta Was this translation helpful? Give feedback.
You have to try if it works. Can be either the web version as you've explained or the npm version (https://blog.axway.com/learning-center/software-development/api-development/using-npm-packages-in-titanium). But it depends on the core packages that the module might require if it works or not.
The solution that works but involves a lot more development: use the native SDKs and create a module. E.g. with https://github.com/matrix-org/matrix-android-sdk2 for Android.