Direkt zum Hauptbereich

phonegap plugin development pitfalls

when developing an plugin for phonegap. Don ' t forget to add your plugin to the config.xml in the assets/www folder.

< plugin name="Dropbox" value="org.apache.cordova.plugin.Dropbox" />

And you also wont forget to add the plugin to the config.xml in the
Approot/res/xml/

folder....

< feature name="Dropbox"> 
        < param name="android-package" value="org.apache.cordova.plugin.Dropbox" />
    < /feature>
       
   

Kommentare