I have a plugin, https://github.com/EddyVerbruggen/LaunchMyApp-PhoneGap-Plugin , which I would like to use with Meteor. I added the GIT repository to app/.meteor/cordova-plugins .
The plugin requires that the variable be passed to it when it is set. How to add this variable?
I added this to mobile-config.js :
// Pass preferences for a particular PhoneGap/Cordova plugin App.configurePlugin('nl.x-services.plugins.launchmyapp', { URL_SCHEME: 'mycoolapp' }); App.setPreference("URL_SCHEME", "mycoolapp");
I am still getting an error indicating that the URL_SCHEME variable is missing.
source share