Reputation: 577
I just "inherited" a PhoneGap 2.0.0 project, and I am trying to add a plugin.
The problem is that I don't have a cordova.plist nor a phonegap.plist nor a *.plist file
Anyone knows how is that possible ?
The project runs both in iPhone and Android and we use PhoneGap Build
Thank you all !!
Upvotes: 2
Views: 4218
Reputation: 46
At least for android config.xml has taken over the cordova.plist file.
Hence the new entry on the config.xml should be :
< plugin name="org.apache.cordova.facebook.Connect" value=" FacebookConnectPlugin" />
Doesn't it work ?
Upvotes: 2
Reputation: 5267
You use PhoneGap Build so all those platform-specific files are added for you by PhoneGap Build.
What plugin are you trying to add? I think PG Build currently only has support for the ChildBrowser plugin. If you want to use any other plugin you will need to set up the development environment for each platform and create the application packages yourself.
Upvotes: 0