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

Commit fdb5863

Browse files
cleanup, bump
1 parent 7eb3f90 commit fdb5863

File tree

6 files changed

+8
-8
lines changed

6 files changed

+8
-8
lines changed

demo-ng/package.json

+1-1
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.2.0",
28-
"nativescript-plugin-firebase": "file:../publish/package/nativescript-plugin-firebase-10.1.1.tgz",
28+
"nativescript-plugin-firebase": "file:../publish/package/nativescript-plugin-firebase-10.1.2.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

+3-3
Original file line numberDiff line numberDiff line change
@@ -27,7 +27,7 @@ export class PushViewModel extends Observable {
2727
if (applicationSettings.getBoolean(PushViewModel.APP_REGISTERED_FOR_NOTIFICATIONS, false)) {
2828
this.doRegisterPushHandlers();
2929
}
30-
this.setScreenName("push-demo-view");
30+
// this.setScreenName("push-demo-view");
3131
}
3232

3333
public doRequestConsent(): void {
@@ -188,12 +188,12 @@ export class PushViewModel extends Observable {
188188
},
189189

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

193193
// Whether you want this plugin to always handle the notifications when the app is in foreground.
194194
// Currently used on iOS only. Default false.
195195
// When false, you can still force showing it when the app is in the foreground by adding 'showWhenInForeground' to the notification as mentioned in the readme.
196-
showNotificationsWhenInForeground: true
196+
showNotificationsWhenInForeground: false
197197
})
198198
.then(() => console.log(">>>> Registered for push"))
199199
.catch(err => console.log(">>>> Failed to register for push"));

demo-push/firebase.nativescript.json

+1-1
Original file line numberDiff line numberDiff line change
@@ -1,7 +1,7 @@
11
{
22
"using_ios": true,
33
"using_android": true,
4-
"analytics": true,
4+
"analytics": false,
55
"firestore": false,
66
"realtimedb": false,
77
"authentication": false,

demo-push/package.json

+1-1
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.1.1.tgz",
12+
"nativescript-plugin-firebase": "file:../publish/package/nativescript-plugin-firebase-10.1.2.tgz",
1313
"nativescript-theme-core": "~1.0.6",
1414
"nativescript-unit-test-runner": "0.7.0",
1515
"tns-core-modules": "~6.1.1"

demo-vue/package.json

+1-1
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.1.1.tgz",
17+
"nativescript-plugin-firebase": "file:../publish/package/nativescript-plugin-firebase-10.1.2.tgz",
1818
"nativescript-theme-core": "~1.0.6",
1919
"nativescript-vue": "~2.4.0",
2020
"tns-core-modules": "~6.1.1"

demo/package.json

+1-1
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.1.1.tgz",
13+
"nativescript-plugin-firebase": "file:../publish/package/nativescript-plugin-firebase-10.1.2.tgz",
1414
"nativescript-theme-core": "^1.0.4",
1515
"nativescript-unit-test-runner": "0.7.0",
1616
"tns-core-modules": "~6.1.1"

0 commit comments

Comments
 (0)