This repository was archived by the owner on Apr 4, 2023. It is now read-only.
File tree Expand file tree Collapse file tree 6 files changed +8
-9
lines changed Expand file tree Collapse file tree 6 files changed +8
-9
lines changed Original file line number Diff line number Diff line change 2525 "nativescript-angular" : " ^6.1.0" ,
2626 "nativescript-camera" : " ~4.1.1" ,
2727 "nativescript-imagepicker" : " ~6.0.5" ,
28- "nativescript-plugin-firebase" : " file:../publish/package/nativescript-plugin-firebase-9.0.1 .tgz" ,
28+ "nativescript-plugin-firebase" : " file:../publish/package/nativescript-plugin-firebase-9.0.2 .tgz" ,
2929 "nativescript-theme-core" : " ~1.0.4" ,
3030 "reflect-metadata" : " ~0.1.10" ,
3131 "rxjs" : " ~6.0.0 || >=6.1.0" ,
Original file line number Diff line number Diff line change 99 }
1010 },
1111 "dependencies" : {
12- "nativescript-plugin-firebase" : " file:../publish/package/nativescript-plugin-firebase-9.0.1 .tgz" ,
12+ "nativescript-plugin-firebase" : " file:../publish/package/nativescript-plugin-firebase-9.0.2 .tgz" ,
1313 "nativescript-theme-core" : " ^1.0.4" ,
1414 "nativescript-unit-test-runner" : " ^0.3.4" ,
1515 "tns-core-modules" : " ~4.2.0"
Original file line number Diff line number Diff line change 1414 }
1515 },
1616 "dependencies" : {
17- "nativescript-plugin-firebase" : " file:../publish/package/nativescript-plugin-firebase-9.0.1 .tgz" ,
17+ "nativescript-plugin-firebase" : " file:../publish/package/nativescript-plugin-firebase-9.0.2 .tgz" ,
1818 "nativescript-theme-core" : " ^1.0.4" ,
1919 "nativescript-vue" : " ^2.0.0" ,
2020 "tns-core-modules" : " ^5.0.2"
Original file line number Diff line number Diff line change @@ -402,16 +402,15 @@ export class HelloWorldModel extends Observable {
402402 this . set ( "userEmailOrPhone" , data . user . email ? data . user . email : ( data . user . phoneNumber ? data . user . phoneNumber : "N/A" ) ) ;
403403 }
404404 } ,
405- // uncomment in order to testi push wiring during 'init' for iOS (instead of adding these callbacks later):
405+ // uncomment in order to test push wiring during 'init' (instead of adding these callbacks later):
406406 /*
407407 onPushTokenReceivedCallback: token => {
408408 // you can use this token to send to your own backend server,
409409 // so you can send notifications to this specific device
410410 console.log("Firebase plugin received a push token: " + token);
411411 // this is for iOS, to copy the token onto the clipboard
412412 if (isIOS) {
413- const pasteboard = iosUtils.getter(UIPasteboard, UIPasteboard.generalPasteboard);
414- pasteboard.setValueForPasteboardType("[Firebase demo app] Last push token received: " + token, kUTTypePlainText);
413+ UIPasteboard.generalPasteboard.setValueForPasteboardType("[Firebase demo app] Last push token received: " + token, kUTTypePlainText);
415414 }
416415 },
417416 onMessageReceivedCallback: message => {
Original file line number Diff line number Diff line change 22 "nativescript" : {
33 "id" : " org.nativescript.firebasedemo" ,
44 "tns-ios" : {
5- "version" : " 5.4.0 "
5+ "version" : " 5.4.2 "
66 },
77 "tns-android" : {
88 "version" : " 5.4.0"
99 }
1010 },
1111 "dependencies" : {
1212 "firebase-functions" : " ^2.0.5" ,
13- "nativescript-plugin-firebase" : " file:../publish/package/nativescript-plugin-firebase-9.0.1 .tgz" ,
13+ "nativescript-plugin-firebase" : " file:../publish/package/nativescript-plugin-firebase-9.0.2 .tgz" ,
1414 "nativescript-theme-core" : " ^1.0.4" ,
1515 "nativescript-unit-test-runner" : " ^0.3.4" ,
1616 "tns-core-modules" : " ~5.4.0"
Original file line number Diff line number Diff line change @@ -2251,7 +2251,7 @@ function coerce(version) {
22512251 if ( match == null )
22522252 return null ;
22532253
2254- return parse ( ( match [ 1 ] || '0' ) + '.' + ( match [ 2 ] || '0' ) + '.' + ( match [ 3 ] || '0' ) ) ;
2254+ return parse ( ( match [ 1 ] || '0' ) + '.' + ( match [ 2 ] || '0' ) + '.' + ( match [ 3 ] || '0' ) ) ;
22552255}
22562256
22572257
You can’t perform that action at this time.
0 commit comments