plugin.xml 611 B

1234567891011121314151617181920
  1. <?xml version="1.0" encoding="UTF-8"?>
  2. <plugin xmlns="http://www.phonegap.com/ns/plugins/1.0" id="cordova-plugin-multidex" version="0.1.2">
  3. <name>Cordova Multi Dex</name>
  4. <description>Adds the multidex flag to Android builds</description>
  5. <license>MIT</license>
  6. <engines>
  7. <engine name="cordova" version=">=3.5.0" />
  8. </engines>
  9. <platform name="android">
  10. <hook type="before_compile" src="updateMultidexManifest.js" />
  11. <hook type="after_platform_add" src="updateMultidexManifest.js" />
  12. <framework src="build.gradle" custom="true" type="gradleReference" />
  13. </platform>
  14. </plugin>