-
Notifications
You must be signed in to change notification settings - Fork 3
/
Copy pathplugin.xml
39 lines (29 loc) · 1.11 KB
/
plugin.xml
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
<?xml version="1.0" encoding="utf-8"?>
<plugin xmlns="http://www.phonegap.com/ns/plugins/1.0"
id="cordova-plugin-go-mobile"
version="1.0.0">
<name>GoCore</name>
<engines>
<engine name="cordova" version=">=7.1.0"/>
<engine name="cordova-android" version=">=7.0.0"/>
</engines>
<author email="[email protected]">Yossi Neiman</author>
<asset src="www/goMobile.js" target="js/goMobile.js"/>
<js-module src="www/goMobile.js" name="goMobile">
<clobbers target="goMobile" />
</js-module>
<platform name="ios" >
<!-- Add support -->
<hook type="after_plugin_add" src="hooks/add-framework.js" />
<hook type="after_platform_add" src="hooks/add-framework.js" />
<!-- Cleanup on uninstall -->
<hook type="before_plugin_rm" src="hooks/rm-framework.js" />
<hook type="before_plugin_uninstall" src="hooks/rm-framework.js" />
<config-file target="config.xml" parent="/*">
<feature name="GlueSwift">
<param name="ios-package" value="GlueSwift" />
</feature>
</config-file>
<source-file src="src/ios/glue.swift" />
</platform>
</plugin>