I am trying to install a facebook integration in the simplest way with phonegap build.
Did the following:
- added this to config.xml:
<gap:plugin name="com.phonegap.plugins.facebookconnect" version="0.9.0">
<param name="APP_ID" value="****************" />
<param name="APP_NAME" value="******" />
</gap:plugin>
- made sure the plugin appears on installed plugins on phonegap build:
it appears as it should.
Plugin Source Version Latest Platforms
com.phonegap.plugins.facebookconnect pgb 0.9.0 0.9.0 android,ios
those two steps are all I should have done according to documentation: https://github.com/Wizcorp/phonegap-facebook-plugin/blob/master/platforms/pg-build/README.md
but when I try to use the plugin I get "ReferenceError: facebookConnectPlugin is not defined"
Did I miss anything? Anyone else encountered this situation?
thanks.