How to determine MOE version and keep it current?

Is there a way to determine which version of MOE Android Studio is currently using? Also, what is the process for updating the version Android Studio uses to keep current with the latest version?

Mike

Dear icd_mike,

I’m not sure what your asking.

  1. Multi-OS Engine’s Android Studio plugin version can be found in Preferences… > Plugins > Multi-OS Engine Plugin, the version is in the description. Whenever we release an update, Android Studio should provide an update popup.

  2. Multi-OS Engine version in a mobile application: System.getProperty("moe.version") should give you what you need. The version is specified in the build.gradle file of the project’s MOE module: classpath group: 'org.multi-os-engine', name: 'moe-gradle', version: '1.2.+'. The 1.2.+ version means that the MOE SDK will be kept up to date for every 1.2.* release. When we release the next MOE SDK, you will need to change this version manually (most likely to 1.3.+).

Best Regards,
Kristóf

Thank you Kristof. That was exactly what I was asking.

Mike