-
Notifications
You must be signed in to change notification settings - Fork 18
Expand file tree
/
Copy pathplugin.xml
More file actions
18 lines (16 loc) · 741 Bytes
/
plugin.xml
File metadata and controls
18 lines (16 loc) · 741 Bytes
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
<?xml version="1.0" encoding="UTF-8"?>
<plugin
xmlns="http://apache.org/cordova/ns/plugins/1.0"
id="cordova-plugin-enable-multidex"
version="0.2.0">
<name>Enable Multidex</name>
<description>Enable multidex for Cordova apps with over 64K methods</description>
<author>Adriano Di Giovanni</author>
<license>MIT</license>
<platform name="android">
<framework src="src/android/build.gradle" custom="true" type="gradleReference" />
<hook type="after_platform_add" src="./scripts/android/editManifest.js" />
<hook type="after_plugin_install" src="./scripts/android/editManifest.js" />
<hook type="before_build" src="./scripts/android/editManifest.js" />
</platform>
</plugin>