-
Notifications
You must be signed in to change notification settings - Fork 0
/
plugin.xml
115 lines (91 loc) · 4.68 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
71
72
73
74
75
76
77
78
79
80
81
82
83
84
85
86
87
88
89
90
91
92
93
94
95
96
97
98
99
100
101
102
103
104
105
106
107
108
109
110
111
112
113
114
<?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="onesignal-cordova-plugin"
version="1.12.3">
<name>OneSignal Push Notifications</name>
<author>Josh Kasten</author>
<description>OneSignal is a high volume Push Notification service for mobile apps. In addition to basic notification delivery, OneSignal also provides tools to localize, target, schedule, A/B test, and automate notifications that you send.</description>
<keywords>push,notification,push notification,push notifications,apns,gcm,adm,retention,messaging,ios,android,windows phone</keywords>
<license>MIT</license>
<js-module src="www/OneSignal.js" name="OneSignal">
<clobbers target="OneSignal" />
</js-module>
<engines>
<engine name="cordova-android" version=">=4.0.0" /> <!-- This main branch of OneSignal depends on gradle and maven. -->
<engine name="apple-xcode" version=">=6.2.0" />
<engine name="apple-ios" version=">=6.0.0" />
</engines>
<platform name="android">
<framework src="com.onesignal:OneSignal:2.3.0@aar" />
<framework src="com.google.android.gms:play-services-gcm:+" />
<!-- play-services-analytics is only required when gms version 8.1.0 or older is used. -->
<framework src="com.google.android.gms:play-services-analytics:+" />
<framework src="com.google.android.gms:play-services-location:+" />
<framework src="build-extras-onesignal.gradle" custom="true" type="gradleReference" />
<config-file target="res/xml/config.xml" parent="/*">
<feature name="OneSignalPush" >
<param name="android-package" value="com.plugin.gcm.OneSignalPush" />
</feature>
</config-file>
<!-- PhoneGap Build (PGB) does not have a amazon build target so it include the required manifest entries in all Android builds. -->
<config-file target="AndroidManifest.xml" parent="/manifest/application">
<amazon:enable-feature android:name="com.amazon.device.messaging" android:required="false" xmlns:amazon="http://schemas.amazon.com/apk/res/android" />
<service android:name="com.onesignal.ADMMessageHandler" android:exported="false" />
<receiver
android:name="com.onesignal.ADMMessageHandler$Receiver"
android:permission="com.amazon.device.messaging.permission.SEND" >
<intent-filter>
<action android:name="com.amazon.device.messaging.intent.REGISTRATION" />
<action android:name="com.amazon.device.messaging.intent.RECEIVE" />
<category android:name="$PACKAGE_NAME" />
</intent-filter>
</receiver>
</config-file>
<source-file src="src/android/com/plugin/gcm/OneSignalPush.java" target-dir="src/com/plugin/gcm/" />
</platform>
<!-- ios -->
<platform name="ios">
<config-file target="config.xml" parent="/*">
<feature name="OneSignalPush">
<param name="ios-package" value="OneSignalPush"/>
</feature>
</config-file>
<framework src="SystemConfiguration.framework" />
<config-file target="*-Info.plist" parent="UIBackgroundModes">
<array>
<string>remote-notification</string>
</array>
</config-file>
<source-file src="src/ios/OneSignal.m" />
<source-file src="src/ios/OneSignalHTTPClient.m" />
<source-file src="src/ios/OneSignalTrackIAP.m" />
<source-file src="src/ios/OneSignalJailbreakDetection.m" />
<source-file src="src/ios/OneSignalPush.m" />
<source-file src="src/ios/OneSignalReachability.m" />
<source-file src="src/ios/OneSignalMobileProvision.m" />
<source-file src="src/ios/OneSignalLocation.m" />
<header-file src="src/ios/OneSignal.h" />
<header-file src="src/ios/OneSignalHTTPClient.h" />
<header-file src="src/ios/OneSignalTrackIAP.h" />
<header-file src="src/ios/OneSignalJailbreakDetection.h" />
<header-file src="src/ios/OneSignalPush.h" />
<header-file src="src/ios/OneSignalReachability.h" />
<header-file src="src/ios/OneSignalMobileProvision.h" />
<header-file src="src/ios/OneSignalLocation.h" />
</platform>
<!-- Windows Phone 8.1 -->
<platform name="windows">
<config-file target="config.xml" parent="/*">
<feature name="OneSignalPush">
<param name="ios-package" value="OneSignalPush"/>
</feature>
</config-file>
<js-module src="src/windows/OneSignalPushProxy.js" name="OneSignalPushProxy">
<merges target="" />
</js-module>
<framework src="src/windows/OneSignalSDK_WP_WNS_WRTC.winmd" custom="true" />
<framework src="src/windows/OneSignalSDK_WP_WNS.dll" custom="true" />
<framework src="src/windows/Newtonsoft.Json.dll" custom="true" />
</platform>
</plugin>