Skip to content
This repository was archived by the owner on Apr 4, 2023. It is now read-only.

Commit 48ba24f

Browse files
bump
1 parent e33cc23 commit 48ba24f

File tree

8 files changed

+9
-10
lines changed

8 files changed

+9
-10
lines changed

demo-ng/package.json

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -25,7 +25,7 @@
2525
"nativescript-angular": "~8.0.3",
2626
"nativescript-camera": "~4.5.0",
2727
"nativescript-imagepicker": "~6.3.0",
28-
"nativescript-plugin-firebase": "file:../publish/package/nativescript-plugin-firebase-10.4.0.tgz",
28+
"nativescript-plugin-firebase": "file:../publish/package/nativescript-plugin-firebase-10.5.0.tgz",
2929
"nativescript-theme-core": "~1.0.6",
3030
"reflect-metadata": "~0.1.13",
3131
"rxjs": "~6.5.2",

demo-push/app/push-view-model.ts

Lines changed: 1 addition & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -187,8 +187,7 @@ export class PushViewModel extends Observable {
187187
}, 500);
188188
},
189189

190-
// Whether you want this plugin to automatically display the notifications or just notify the callback. Currently used on iOS only. Default true.
191-
showNotifications: false,
190+
showNotifications: true,
192191

193192
// Whether you want this plugin to always handle the notifications when the app is in foreground.
194193
// Currently used on iOS only. Default false.

demo-push/package.json

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -9,7 +9,7 @@
99
}
1010
},
1111
"dependencies": {
12-
"nativescript-plugin-firebase": "file:../publish/package/nativescript-plugin-firebase-10.4.0.tgz",
12+
"nativescript-plugin-firebase": "file:../publish/package/nativescript-plugin-firebase-10.5.0.tgz",
1313
"nativescript-theme-core": "~1.0.6",
1414
"nativescript-unit-test-runner": "0.7.0",
1515
"tns-core-modules": "~6.3.2"

demo-vue/package.json

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -14,7 +14,7 @@
1414
}
1515
},
1616
"dependencies": {
17-
"nativescript-plugin-firebase": "file:../publish/package/nativescript-plugin-firebase-10.4.0.tgz",
17+
"nativescript-plugin-firebase": "file:../publish/package/nativescript-plugin-firebase-10.5.0.tgz",
1818
"nativescript-theme-core": "~1.0.6",
1919
"nativescript-vue": "~2.4.0",
2020
"tns-core-modules": "~6.3.2"

demo/package.json

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -10,7 +10,7 @@
1010
},
1111
"dependencies": {
1212
"firebase-functions": "^2.0.5",
13-
"nativescript-plugin-firebase": "file:../publish/package/nativescript-plugin-firebase-10.4.0.tgz",
13+
"nativescript-plugin-firebase": "file:../publish/package/nativescript-plugin-firebase-10.5.0.tgz",
1414
"nativescript-theme-core": "^1.0.4",
1515
"nativescript-unit-test-runner": "0.7.0",
1616
"tns-core-modules": "~6.3.2"

src/firebase.ios.ts

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -2,7 +2,7 @@ import * as application from "tns-core-modules/application/application";
22
import { device } from "tns-core-modules/platform";
33
import { ActionCodeSettings, DataSnapshot, FBDataSingleEvent, firestore, GetAuthTokenOptions, IdTokenResult, OnDisconnect as OnDisconnectBase, QueryOptions, User } from "./firebase";
44
import { DocumentSnapshot as DocumentSnapshotBase, FieldValue, firebase, GeoPoint, isDocumentReference } from "./firebase-common";
5-
import * as firebaseFunctions from './functions/functions';
5+
import * as firebaseFunctions from "./functions/functions";
66
import * as firebaseMessaging from "./messaging/messaging";
77
import { firebaseUtils } from "./utils";
88
import { getNonce, Sha256 } from "./utils/nonce-util-ios";

src/messaging/messaging.ios.ts

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -1,8 +1,8 @@
1+
import { DelegateObserver, SharedNotificationDelegate } from "nativescript-shared-notification-delegate";
12
import * as applicationSettings from "tns-core-modules/application-settings";
23
import * as application from "tns-core-modules/application/application";
34
import { device } from "tns-core-modules/platform/platform";
45
import { MessagingOptions } from "../firebase";
5-
import { DelegateObserver, SharedNotificationDelegate } from "nativescript-shared-notification-delegate";
66
import { firebase } from "../firebase-common";
77
import { firebaseUtils } from "../utils";
88
import { IosInteractiveNotificationAction, IosInteractiveNotificationCategory, IosInteractiveNotificationType } from "./messaging";

src/package.json

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -1,6 +1,6 @@
11
{
22
"name": "nativescript-plugin-firebase",
3-
"version": "10.4.0",
3+
"version": "10.5.0",
44
"description": "Fire. Base. Firebase!",
55
"main": "firebase",
66
"typings": "index.d.ts",
@@ -135,7 +135,7 @@
135135
"dependencies": {
136136
"fs-extra": "~2.1.0",
137137
"nativescript-hook": "~0.2.5",
138-
"nativescript-shared-notification-delegate": "1.0.0",
138+
"nativescript-shared-notification-delegate": "~1.0.0",
139139
"prompt-lite": "~0.1.1",
140140
"xcode": "~0.9.3",
141141
"semver": "~5.7.1"

0 commit comments

Comments
 (0)