-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathplugin.xml
32 lines (32 loc) · 1.19 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
<?xml version="1.0" encoding="UTF-8"?>
<plugin xmlns="http://apache.org/cordova/ns/plugins/1.0" id="io.branch.sdk" version="1.8.0">
<name>BranchSDK</name>
<description>Branch SDK Plugin</description>
<license>Apache 2.0</license>
<keywords>branch</keywords>
<js-module src="dist/build.min.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="cordova-src/ios/AppDelegate+BNCDevice.h" />
<source-file src="cordova-src/ios/AppDelegate+BNCDevice.m" />
<header-file src="cordova-src/ios/BNCDevice.h" />
<source-file src="cordova-src/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="cordova-src/android/BranchDevice.java" target-dir="src/io/branch" />
</platform>
</plugin>