This repository has been archived by the owner on Nov 23, 2024. It is now read-only.
-
Notifications
You must be signed in to change notification settings - Fork 11
/
plugin.xml
59 lines (47 loc) · 2.23 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
<?xml version="1.0" encoding="UTF-8"?>
<plugin xmlns="http://www.phonegap.com/ns/plugins/1.0"
xmlns:android="http://schemas.android.com/apk/res/android"
id="cordova-plugin-smooch" version="2.0.0">
<name>Smooch</name>
<description>Smooch Cordova Plugin for iOS and Android</description>
<keywords>Smooch,messaging,chat,in-app,support,help</keywords>
<js-module name="Smooch" src="www/js/smooch-cordova.js">
<clobbers target="Smooch" />
</js-module>
<!-- ios -->
<platform name="ios">
<config-file target="config.xml" parent="/*">
<feature name="SmoochCordova">
<param name="ios-package" value="SmoochCordova"/>
</feature>
</config-file>
<header-file src="src/ios/SmoochCordova.h" />
<source-file src="src/ios/SmoochCordova.m" />
<framework src="CoreGraphics.framework" />
<framework src="CoreTelephony.framework" />
<framework src="CoreText.framework" />
<framework src="Foundation.framework" />
<framework src="libxml2.dylib" />
<framework src="OpenGLES.framework" />
<framework src="QuartzCore.framework" />
<framework src="SystemConfiguration.framework" />
<framework src="UIKit.framework" />
<framework src="AssetsLibrary.framework" />
<framework src="Photos.framework" />
<framework src="AVFoundation.framework" />
<framework src="Smooch" type="podspec" spec="~> 6.0" />
</platform>
<!-- android -->
<platform name="android">
<config-file target="config.xml" parent="/*">
<feature name="SmoochCordova">
<param name="android-package" value="io.smooch.cordova.SmoochCordova"/>
</feature>
</config-file>
<source-file src="src/android/SmoochCordova.java" target-dir="src/io/smooch/cordova" />
<source-file src="src/android/SmoochApplication.java" target-dir="src/io/smooch/cordova" />
<hook type="after_plugin_install" src="scripts/afterInstall.js" />
<hook type="before_plugin_uninstall" src="scripts/beforeUninstall.js" />
<framework src="src/android/Smooch.gradle" custom="true" type="gradleReference" />
</platform>
</plugin>