Nessuna descrizione

plugin.xml 1.1KB

123456789101112131415161718192021222324252627
  1. <?xml version="1.0" encoding="UTF-8"?>
  2. <plugin xmlns="http://www.phonegap.com/ns/plugins/1.0"
  3. xmlns:android="http://schemas.android.com/apk/res/android"
  4. id="cordova-custom-config"
  5. version="5.1.0">
  6. <name>cordova-custom-config</name>
  7. <description>Cordova/Phonegap plugin to update platform configuration files based on preferences and config-file data defined in config.xml</description>
  8. <author>Dave Alden</author>
  9. <engines>
  10. <engine name="cordova" version=">=3.0.0" />
  11. </engines>
  12. <repo>https://github.com/dpa99c/cordova-custom-config.git</repo>
  13. <issue>https://github.com/dpa99c/cordova-custom-config/issues</issue>
  14. <keywords>ecosystem:cordova,cordova,phonegap,ios,android,config,configuration,plist,manifest</keywords>
  15. <license>MIT</license>
  16. <hook src="hooks/restoreBackups.js" type="before_prepare" />
  17. <hook src="hooks/restoreBackups.js" type="before_plugin_uninstall" />
  18. <hook src="hooks/applyCustomConfig.js" type="after_prepare" />
  19. <hook src="hooks/applyCustomConfig.js" type="before_prepare" />
  20. <hook src="hooks/applyCustomConfig.js" type="before_compile" />
  21. </plugin>