When I do :
cordova plugin add https://github.com/phonegap/phonegap-facebook-plugin.git
I get the error :
Error: Variable(s) missing: APP_ID, APP_NAME
Where do I have to configure these variables ?
Look at the bottom of the README.md file on that github repository. You'll see it gives you instructions for installing the plugin and including the variables:
plugman install --platform [PLATFORM] --project [TARGET-PATH] --plugin [PLUGIN-PATH] --variable APP_ID="[APP_ID]" --variable APP_NAME="[APP_NAME]"
where
[PLATFORM] = ios or android
[TARGET-PATH] = path to folder containing your phonegap project
[PLUGIN-PATH] = path to folder containing this plugin
[APP_ID] = Your APP_ID as registered on Facebook
The Cordova CLI uses Plugman behind the scenes, so you can use it to inject variable names like this:
cordova plugin add https://github.com/phonegap/phonegap-facebook-plugin.git --variable APP_ID="my-app-id" --variable APP_NAME="my-app-name"
Edit the following lines in plugins\com.phonegap.plugins.facebookconnect\plugins.xml:
<preference name="APP_ID" />
<preference name="APP_NAME" />
To:
<param name="APP_ID" value="123456789" />
<param name="APP_NAME" value="Cordova" />
If you love us? You can donate to us via Paypal or buy me a coffee so we can maintain and grow! Thank you!
Donate Us With