In https://docs.aerogear.org/aerogear/latest/showcase-apps.html#downloading-the-mobile-services-configuration-file
we say:
Move mobile-services.json to the following location in your application project:
src/mobile-services.json
I believe this is wrong for ionic-showcase.
Proposal: Copy the contents of `mobile-services.json` to replace the contents of the `config` object of `src/mobile-services.js`, for example:
``` {code} let config = { "version": 1, "namespace": "demo", "clientId": "test-mobile-client", "services": [] };
module.exports = config; ``` {code} NOTE: Ignore the instructions for Ionic in the Mobile Developer Console for this showcase app.
|
|