-
Notifications
You must be signed in to change notification settings - Fork 0
/
plugin.xml
70 lines (54 loc) · 2.28 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 xmlns="http://www.phonegap.com/ns/plugins/1.0"
xmlns:android="http://schemas.android.com/apk/res/android"
id="cleverpush-cordova-plugin"
version="1.7.9">
<name>CleverPush</name>
<author>CleverPush GmbH</author>
<description>CleverPush is a feature rich Push Notification Service for Web and App.</description>
<keywords>push,notification,cleverpush</keywords>
<license>MIT</license>
<js-module src="www/cleverpush.js" name="CleverPush">
<clobbers target="CleverPush" />
</js-module>
<engines>
<engine name="cordova-android" version=">=4.0.0" />
<engine name="apple-xcode" version=">=6.2.0" />
<engine name="apple-ios" version=">=7.0.0" />
</engines>
<platform name="android">
<framework src="com.cleverpush:cleverpush:1.26.7" />
<config-file target="res/xml/config.xml" parent="/*">
<feature name="CleverPush" >
<param name="android-package" value="com.cleverpush.cordova.CleverPushPlugin" />
</feature>
</config-file>
<source-file src="src/android/com/cleverpush/cordova/CleverPushPlugin.java" target-dir="src/com/cleverpush/cordova" />
</platform>
<platform name="ios">
<podspec>
<pods use-frameworks="true">
<pod name="CleverPush" spec="~> 1.22.3" />
</pods>
</podspec>
<header-file src="src/ios/CleverPushPlugin.h" />
<source-file src="src/ios/CleverPushPlugin.m" />
<config-file target="config.xml" parent="/*">
<feature name="CleverPush">
<param name="ios-package" value="CleverPushPlugin" />
</feature>
</config-file>
<framework src="SystemConfiguration.framework" />
<config-file target="*-Info.plist" parent="UIBackgroundModes">
<array>
<string>remote-notification</string>
</array>
</config-file>
<config-file target="*-Debug.plist" parent="aps-environment">
<string>development</string>
</config-file>
<config-file target="*-Release.plist" parent="aps-environment">
<string>production</string>
</config-file>
</platform>
</plugin>