Exporting a 2.5.6 module and importing in 2.5.3

2
Is it possible to use (export/import or any other way) a module developed in Mendix 2.5.6 in a project currently being developed in Mendix 2.5.3 ?
asked
3 answers
2

You can export the 2.5.6 module, fake its version number and import it into 2.5.3. Faking a version number can be done using the add-on SQLite Manager in Firefox. You can open the .mpr file with it (be sure to select 'All files (.)' to actually see it) and manipulate its contents. The table you need to update is _Metadata and you can set the _ProductVersion column of the single row to 2.5.0.

Note that no guarantees can be given when 'hacking' an mpr like this but it might save you some work.

answered
1

No. But if its about an appstore module, older versions might be available as well.

answered
0

Thanks, Michel. I need to use it both for integrating an appstore module (questionnaire, oldest Mendix version 2.5.5.1) and to integrate functionality developed in 2.5.6.

answered