Skip to content

Commit efca88c

Browse files
committed
Fixed Cordova version requirements
1 parent f7a8c6b commit efca88c

File tree

2 files changed

+14
-5
lines changed

2 files changed

+14
-5
lines changed

package.json

Lines changed: 10 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -1,5 +1,5 @@
11
{
2-
"version": "1.10.0",
2+
"version": "1.10.1",
33
"name": "onesignal-cordova-plugin",
44
"cordova_name": "OneSignal Push Notifications",
55
"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, and automate notifications that you send.",
@@ -27,8 +27,16 @@
2727
],
2828
"engines": [
2929
{
30-
"name": "cordova",
30+
"name": "cordova-android",
3131
"version": ">=4.0.0"
32+
},
33+
{
34+
"name": "apple-xcode",
35+
"version": ">=6.2.0"
36+
},
37+
{
38+
"apple-ios:",
39+
"version": ">=6.0.0"
3240
}
3341
],
3442
"cordova": {

plugin.xml

Lines changed: 4 additions & 3 deletions
Original file line numberDiff line numberDiff line change
@@ -2,7 +2,7 @@
22
<plugin xmlns="http://www.phonegap.com/ns/plugins/1.0"
33
xmlns:android="http://schemas.android.com/apk/res/android"
44
id="onesignal-cordova-plugin"
5-
version="1.10.0">
5+
version="1.10.1">
66

77
<name>OneSignal Push Notifications</name>
88
<author>Josh Kasten</author>
@@ -17,9 +17,10 @@
1717
<clobbers target="OneSignal" />
1818
</js-module>
1919

20-
<!-- This main branch of OneSignal depends on gradle and maven. -->
2120
<engines>
22-
<engine name="cordova" version=">=4.0.0" />
21+
<engine name="cordova-android" version=">=4.0.0" /> <!-- This main branch of OneSignal depends on gradle and maven. -->
22+
<engine name="apple-xcode" version=">=6.2.0" />
23+
<engine name="apple-ios" version=">=6.0.0" />
2324
</engines>
2425

2526
<platform name="android">

0 commit comments

Comments
 (0)