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

Commit

Permalink
bump
Browse files Browse the repository at this point in the history
  • Loading branch information
EddyVerbruggen committed Dec 10, 2018
1 parent 6b3ae8b commit 3f950ae
Show file tree
Hide file tree
Showing 7 changed files with 12 additions and 12 deletions.
4 changes: 4 additions & 0 deletions .travis.yml
Original file line number Diff line number Diff line change
Expand Up @@ -18,6 +18,10 @@ cache:
- $HOME/.gradle/caches/
- $HOME/.gradle/wrapper/

before_install:
- sudo pip install --upgrade pip
- sudo pip install six

install:
- echo no | npm install -g nativescript
- tns usage-reporting disable
Expand Down
2 changes: 1 addition & 1 deletion demo-ng/package.json
Original file line number Diff line number Diff line change
Expand Up @@ -25,7 +25,7 @@
"nativescript-angular": "^6.1.0",
"nativescript-camera": "^4.0.2",
"nativescript-imagepicker": "~6.0.4",
"nativescript-plugin-firebase": "file:../publish/package/nativescript-plugin-firebase-7.4.4.tgz",
"nativescript-plugin-firebase": "file:../publish/package/nativescript-plugin-firebase-7.4.5.tgz",
"nativescript-theme-core": "~1.0.4",
"reflect-metadata": "~0.1.10",
"rxjs": "~6.0.0 || >=6.1.0",
Expand Down
2 changes: 1 addition & 1 deletion demo-push/package.json
Original file line number Diff line number Diff line change
Expand Up @@ -9,7 +9,7 @@
}
},
"dependencies": {
"nativescript-plugin-firebase": "file:../publish/package/nativescript-plugin-firebase-7.4.4.tgz",
"nativescript-plugin-firebase": "file:../publish/package/nativescript-plugin-firebase-7.4.5.tgz",
"nativescript-theme-core": "^1.0.4",
"nativescript-unit-test-runner": "^0.3.4",
"tns-core-modules": "~4.2.0"
Expand Down
2 changes: 1 addition & 1 deletion demo/package.json
Original file line number Diff line number Diff line change
Expand Up @@ -10,7 +10,7 @@
},
"dependencies": {
"firebase-functions": "^2.0.5",
"nativescript-plugin-firebase": "file:../publish/package/nativescript-plugin-firebase-7.4.4.tgz",
"nativescript-plugin-firebase": "file:../publish/package/nativescript-plugin-firebase-7.4.5.tgz",
"nativescript-theme-core": "^1.0.4",
"nativescript-unit-test-runner": "^0.3.4",
"tns-core-modules": "~5.0.5"
Expand Down
9 changes: 3 additions & 6 deletions src/firebase.ios.ts
Original file line number Diff line number Diff line change
Expand Up @@ -308,12 +308,9 @@ if (typeof (FIRMessaging) !== "undefined" || useExternalPushProvider) {
function getAppDelegate() {
// Play nice with other plugins by not completely ignoring anything already added to the appdelegate
if (application.ios.delegate === undefined) {
class UIApplicationDelegateImpl extends UIResponder implements UIApplicationDelegate {
public static ObjCProtocols = [UIApplicationDelegate];

// static new(): UIApplicationDelegateImpl {
// return <UIApplicationDelegateImpl>super.new();
// }
@ObjCClass(UIApplicationDelegate)
class UIApplicationDelegateImpl extends UIResponder implements UIApplicationDelegate {
}

application.ios.delegate = UIApplicationDelegateImpl;
Expand Down Expand Up @@ -1223,7 +1220,7 @@ firebase.getValue = path => {
return new Promise((resolve, reject) => {
try {
const where = path === undefined ? FIRDatabase.database().reference() : FIRDatabase.database().reference().childByAppendingPath(path);
const listener = where.observeSingleEventOfTypeWithBlockWithCancelBlock(
where.observeSingleEventOfTypeWithBlockWithCancelBlock(
FIRDataEventType.Value,
snapshot => {
resolve(firebase.getCallbackData('ValueChanged', snapshot));
Expand Down
3 changes: 1 addition & 2 deletions src/mlkit/mlkit-cameraview.ios.ts
Original file line number Diff line number Diff line change
Expand Up @@ -171,9 +171,8 @@ export abstract class MLKitCameraView extends MLKitCameraViewBase {
abstract createSuccessListener(): any;
}

@ObjCClass(TNSMLKitCameraViewDelegate)
class TNSMLKitCameraViewDelegateImpl extends NSObject implements TNSMLKitCameraViewDelegate {
public static ObjCProtocols = [TNSMLKitCameraViewDelegate];

private owner: WeakRef<MLKitCameraView>;
private resultCallback: (message: any) => void;
private options?: any;
Expand Down
2 changes: 1 addition & 1 deletion src/package.json
Original file line number Diff line number Diff line change
@@ -1,6 +1,6 @@
{
"name": "nativescript-plugin-firebase",
"version": "7.4.4",
"version": "7.4.5",
"description": "Fire. Base. Firebase!",
"main": "firebase",
"typings": "index.d.ts",
Expand Down

0 comments on commit 3f950ae

Please sign in to comment.