forked from intercom/intercom-cordova
-
Notifications
You must be signed in to change notification settings - Fork 0
/
plugin.xml
70 lines (58 loc) · 2.89 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
40
41
42
43
44
45
46
47
48
49
50
51
52
53
54
55
56
57
58
59
60
61
62
63
64
65
66
67
68
69
70
<?xml version='1.0' encoding='utf-8'?>
<plugin id="cordova-plugin-intercom" version="3.0.9" xmlns="http://apache.org/cordova/ns/plugins/1.0" xmlns:android="http://schemas.android.com/apk/res/android">
<name>Intercom</name>
<author>Intercom</author>
<license>MIT License</license>
<description>Cordova plugin for Intercom for mobile</description>
<repo>https://github.com/intercom/intercom-cordova.git</repo>
<keywords>intercom,intercom-cordova</keywords>
<engines>
<engine name="cordova" version=">=3.9.2" />
<engine name="cordova-android" version=">=3.9.2" />
<engine name="cordova-ios" version=">=3.9.2" />
</engines>
<js-module name="Intercom" src="www/intercom.js">
<clobbers target="intercom" />
</js-module>
<platform name="ios">
<header-file src="src/ios/IntercomBridge.h" />
<source-file src="src/ios/IntercomBridge.m" />
<header-file src="src/ios/AppDelegate+IntercomPush.h" />
<source-file src="src/ios/AppDelegate+IntercomPush.m" />
<config-file target="config.xml" parent="/*">
<feature name="Intercom">
<param name="ios-package" value="IntercomBridge" />
<param name="onload" value="true" />
</feature>
</config-file>
<header-file src="src/ios/Intercom.framework/Versions/A/Headers/Intercom.h" />
<source-file src="src/ios/Intercom.framework/Versions/A/Intercom" framework="true" />
<resource-file src="src/ios/Intercom.framework/Versions/A/Resources/Intercom.bundle" />
<framework src="Foundation.framework" />
<framework src="UIKit.framework" />
<framework src="Photos.framework" />
<framework src="Accelerate.framework" />
<framework src="Security.framework" />
<framework src="SystemConfiguration.framework" />
<framework src="MobileCoreServices.framework" />
<framework src="ImageIO.framework" />
<framework src="QuartzCore.framework" />
<framework src="AudioToolbox.framework" />
<framework src="CoreGraphics.framework" />
<framework src="CFNetwork.framework" />
<framework src="libicucore.dylib" />
<framework src="libxml2.dylib" />
</platform>
<platform name="android">
<source-file src="src/android/IntercomBridge.java" target-dir="src/io/intercom/android/sdk" />
<source-file src="src/android/CordovaHeaderInterceptor.java" target-dir="src/io/intercom/android/sdk" />
<framework src="src/android/intercom.gradle" custom="true" type="gradleReference" />
<framework src="src/android/build-extras-intercom.gradle" custom="true" type="gradleReference" />
<config-file target="res/xml/config.xml" parent="/*">
<feature name="Intercom">
<param name="android-package" value="io.intercom.android.sdk.IntercomBridge" />
<param name="onload" value="true" />
</feature>
</config-file>
</platform>
</plugin>