File tree Expand file tree Collapse file tree 6 files changed +16
-5
lines changed
Expand file tree Collapse file tree 6 files changed +16
-5
lines changed Original file line number Diff line number Diff line change 11Change Log
22==========
33
4+ ## Version 2.0.0
5+
6+ * Make plugin compatible with Tabris.js 2.2.0+.
7+ * Fix a crash on iOS when GoogleService-Info.plist is missing.
8+ * Fix permissions declaration in AndroidManifest.xml.
9+ * Update the Firebase Analytics framework.
10+ * Fix an issue on Android, which may cause messages to be delivered twice.
11+ * The iOS plugin now inserts the required ` aps-environment ` entitlement.
12+ * Fix an issue on iOS causing no notification banners to be shown.
13+ * Fix an issue on iOS causing no notifications to be received when the app is not running.
14+
415## Version 1.0.1
516
617* Use ES5 in the JavaScript part of the plugin to make it compatible with iOS 9.
Original file line number Diff line number Diff line change @@ -13,7 +13,7 @@ The Tabris.js website provides detailed information on how to [integrate custom
1313The plugin should be added as an entry in the apps ` config.xml ` file:
1414
1515``` xml
16- <plugin name =" tabris-plugin-firebase" spec =" ^1 .0.0" />
16+ <plugin name =" tabris-plugin-firebase" spec =" ^2 .0.0" />
1717```
1818
1919To fetch the latest development version use the GitHub url:
Original file line number Diff line number Diff line change @@ -44,7 +44,7 @@ An Android [notification icon](https://developer.android.com/guide/practices/ui_
4444The icon can be configured inside your apps ` config.xml ` :
4545
4646``` xml
47- <plugin name =" tabris-plugin-firebase" spec =" ^1 .0.0" >
47+ <plugin name =" tabris-plugin-firebase" spec =" ^2 .0.0" >
4848 <variable name =" ANDROID_NOTIFICATION_ICON" value =" @drawable/ic_notification" />
4949</plugin >
5050```
Original file line number Diff line number Diff line change 11<?xml version =' 1.0' encoding =' utf-8' ?>
22<widget xmlns =" http://www.w3.org/ns/widgets"
33 id =" com.eclipsesource.tabris.firebase.example"
4- version =" 1 .0.0" >
4+ version =" 2 .0.0" >
55 <name >Tabris.js Firebase Plugin Example</name >
66 <description >Examples for the Tabris.js firebase plugin.</description >
77 <author email =" tabris@eclipsesource.com" href =" https://tabrisjs.com" >EclipseSource</author >
Original file line number Diff line number Diff line change 11{
22 "name" : " tabris-plugin-firebase" ,
3- "version" : " 1 .0.1 " ,
3+ "version" : " 2 .0.0 " ,
44 "description" : " A firebase plugin for Tabris.js" ,
55 "cordova" : {
66 "id" : " tabris-plugin-firebase" ,
Original file line number Diff line number Diff line change 22<plugin xmlns =" http://apache.org/cordova/ns/plugins/1.0"
33 xmlns : android =" http://schemas.android.com/apk/res/android"
44 id =" tabris-plugin-firebase"
5- version =" 1 .0.1 " >
5+ version =" 2 .0.0 " >
66
77 <name >Tabris.js Firebase Plugin</name >
88 <description >A firebase for Tabris.js. The plugin allows to handle cloud messages.</description >
You can’t perform that action at this time.
0 commit comments