-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathplugin.xml
More file actions
30 lines (30 loc) · 1.06 KB
/
plugin.xml
File metadata and controls
30 lines (30 loc) · 1.06 KB
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
<?xml version="1.5.6"?>
<plugin xmlns="http://apache.org/cordova/ns/plugins/1.0" id="io.branch.sdk" version="1.5.6">
<name>BranchSDK</name>
<description>Branch SDK Plugin</description>
<license>Apache 2.0</license>
<keywords>branch</keywords>
<js-module src="dist/cordova/build.js" name="branch">
<clobbers target="branch" />
<clobbers target="Branch" />
</js-module>
<platform name="ios">
<config-file target="config.xml" parent="/*">
<feature name="BranchDevice">
<param name="ios-package" value="BNCDevice" />
<param name="onload" value="true" />
</feature>
</config-file>
<header-file src="src/cordova/ios/BNCDevice.h" />
<source-file src="src/cordova/ios/BNCDevice.m" />
</platform>
<platform name="android">
<config-file target="config.xml" parent="/*">
<feature name="BranchDevice">
<param name="android-package" value="io.branch.BranchDevice"/>
<param name="onload" value="true" />
</feature>
</config-file>
<source-file src="src/cordova/android/BranchDevice.java" target-dir="src/io/branch" />
</platform>
</plugin>