Dependency conflict with Speech To Text Native Offline community supported module

0
I am trying to integrate this marketplace solution to our native app currently on Studio Pro 10.6.24 but experiencing an npm depedancy conflict.   Does anyone know the best way to get ahold of the developer?    What is the best way to get access to the mendix.SpeechToTextNativeNbd.mpk  widget's source code?  Please advise.  
asked
1 answers
1

A .mpk file in Mendix is just a zipped package, which contains the widget’s source code, XML configs, and any supporting files. So you can extract it as follows:

 

- Change the extension to .zip and unzip the file

- Explore the contentsInside you’ll find: widget/ folder (usually contains the widget JavaScript/TypeScript source files). widget.xml defines widget properties, events, configuration options.

 

You can edit the JS/TS source code files in any editor then repack into a zip file. Then rename to mpk and use it by placing in your apps's widgets/ folder.

answered