This repository was archived by the owner on Apr 4, 2023. It is now read-only.
File tree Expand file tree Collapse file tree 7 files changed +12
-12
lines changed Expand file tree Collapse file tree 7 files changed +12
-12
lines changed Original file line number Diff line number Diff line change @@ -18,6 +18,10 @@ cache:
18
18
- $HOME/.gradle/caches/
19
19
- $HOME/.gradle/wrapper/
20
20
21
+ before_install :
22
+ - sudo pip install --upgrade pip
23
+ - sudo pip install six
24
+
21
25
install :
22
26
- echo no | npm install -g nativescript
23
27
- tns usage-reporting disable
Original file line number Diff line number Diff line change 25
25
"nativescript-angular" : " ^6.1.0" ,
26
26
"nativescript-camera" : " ^4.0.2" ,
27
27
"nativescript-imagepicker" : " ~6.0.4" ,
28
- "nativescript-plugin-firebase" : " file:../publish/package/nativescript-plugin-firebase-7.4.4 .tgz" ,
28
+ "nativescript-plugin-firebase" : " file:../publish/package/nativescript-plugin-firebase-7.4.5 .tgz" ,
29
29
"nativescript-theme-core" : " ~1.0.4" ,
30
30
"reflect-metadata" : " ~0.1.10" ,
31
31
"rxjs" : " ~6.0.0 || >=6.1.0" ,
Original file line number Diff line number Diff line change 9
9
}
10
10
},
11
11
"dependencies" : {
12
- "nativescript-plugin-firebase" : " file:../publish/package/nativescript-plugin-firebase-7.4.4 .tgz" ,
12
+ "nativescript-plugin-firebase" : " file:../publish/package/nativescript-plugin-firebase-7.4.5 .tgz" ,
13
13
"nativescript-theme-core" : " ^1.0.4" ,
14
14
"nativescript-unit-test-runner" : " ^0.3.4" ,
15
15
"tns-core-modules" : " ~4.2.0"
Original file line number Diff line number Diff line change 10
10
},
11
11
"dependencies" : {
12
12
"firebase-functions" : " ^2.0.5" ,
13
- "nativescript-plugin-firebase" : " file:../publish/package/nativescript-plugin-firebase-7.4.4 .tgz" ,
13
+ "nativescript-plugin-firebase" : " file:../publish/package/nativescript-plugin-firebase-7.4.5 .tgz" ,
14
14
"nativescript-theme-core" : " ^1.0.4" ,
15
15
"nativescript-unit-test-runner" : " ^0.3.4" ,
16
16
"tns-core-modules" : " ~5.0.5"
Original file line number Diff line number Diff line change @@ -308,12 +308,9 @@ if (typeof (FIRMessaging) !== "undefined" || useExternalPushProvider) {
308
308
function getAppDelegate ( ) {
309
309
// Play nice with other plugins by not completely ignoring anything already added to the appdelegate
310
310
if ( application . ios . delegate === undefined ) {
311
- class UIApplicationDelegateImpl extends UIResponder implements UIApplicationDelegate {
312
- public static ObjCProtocols = [ UIApplicationDelegate ] ;
313
311
314
- // static new(): UIApplicationDelegateImpl {
315
- // return <UIApplicationDelegateImpl>super.new();
316
- // }
312
+ @ObjCClass ( UIApplicationDelegate )
313
+ class UIApplicationDelegateImpl extends UIResponder implements UIApplicationDelegate {
317
314
}
318
315
319
316
application . ios . delegate = UIApplicationDelegateImpl ;
@@ -1223,7 +1220,7 @@ firebase.getValue = path => {
1223
1220
return new Promise ( ( resolve , reject ) => {
1224
1221
try {
1225
1222
const where = path === undefined ? FIRDatabase . database ( ) . reference ( ) : FIRDatabase . database ( ) . reference ( ) . childByAppendingPath ( path ) ;
1226
- const listener = where . observeSingleEventOfTypeWithBlockWithCancelBlock (
1223
+ where . observeSingleEventOfTypeWithBlockWithCancelBlock (
1227
1224
FIRDataEventType . Value ,
1228
1225
snapshot => {
1229
1226
resolve ( firebase . getCallbackData ( 'ValueChanged' , snapshot ) ) ;
Original file line number Diff line number Diff line change @@ -171,9 +171,8 @@ export abstract class MLKitCameraView extends MLKitCameraViewBase {
171
171
abstract createSuccessListener ( ) : any ;
172
172
}
173
173
174
+ @ObjCClass ( TNSMLKitCameraViewDelegate )
174
175
class TNSMLKitCameraViewDelegateImpl extends NSObject implements TNSMLKitCameraViewDelegate {
175
- public static ObjCProtocols = [ TNSMLKitCameraViewDelegate ] ;
176
-
177
176
private owner : WeakRef < MLKitCameraView > ;
178
177
private resultCallback : ( message : any ) => void ;
179
178
private options ?: any ;
Original file line number Diff line number Diff line change 1
1
{
2
2
"name" : " nativescript-plugin-firebase" ,
3
- "version" : " 7.4.4 " ,
3
+ "version" : " 7.4.5 " ,
4
4
"description" : " Fire. Base. Firebase!" ,
5
5
"main" : " firebase" ,
6
6
"typings" : " index.d.ts" ,
You can’t perform that action at this time.
0 commit comments