Versions Compared

Key

  • This line was added.
  • This line was removed.
  • Formatting was changed.


Assuming your connection to your AL development server is setup and working (Publishing the Hello World demo project (.al)) and the Mobile WMS app is installed (Before extending), you are ready to start developing your custom Mobile WMS Extension.In app.json add the dependency to Mobile WMS. This will need to be the exact Mobile WMS version currently intalled at your development server (in a bc15 project, the Mobile WMS dependency below


Note
This example is for Runtime 2.0 and 3.0 (2019 Spring/Fall)

For Runtime 4.0, thedependency should be added to the list of other existing dependencies

...

.


Step 1

  • Open "app.json"


Step 2

  • Add the dependency to Mobile WMS by copying the block below.
     

  "dependencies": [

    { 

      "appId""a5727ce6-368c-49e2-84cb-1a6052f0551c"

      "name""Mobile WMS"

      "publisher""Tasklet Factory"

      "version""5.0xx.144xxx.175xx"  CHANGE ME

    }

  ],

 

Download symbols to verify your Mobile WMS reference is working.


Image Added

Step 3

  • Change the "version": to the Mobile WMS extension you are using.
  • You can always find this in on the Extensions page.


Image Added



Step 4

Now you are ready to download symbols to verify the dependency is working.

Press Ctrl+Shift+P : AL: Download Symbols


The symbol download request must now include a line for the Mobile WMS app

...

You are now ready to start developing your custom code for Mobile WMS.

 

...

titleTroubleshooting

...


Next:

Sample app.json for bc13/bc14

...