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

Commit 4239558

Browse files
bump
1 parent 5dfe32b commit 4239558

File tree

2 files changed

+27
-2
lines changed

2 files changed

+27
-2
lines changed

CHANGELOG.md

Lines changed: 22 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -1,6 +1,28 @@
11
<img src="docs/images/firebase-logo.png" width="116px" height="32px" alt="Firebase"/>
22

33

4+
## 3.9.2 (2017, January 20)
5+
6+
[Full changelog](https://github.com/EddyVerbruggen/nativescript-plugin-firebase/compare/3.9.1...3.9.2)
7+
8+
### SDK versions
9+
10+
If version numbers __changed__, clean your platform folders to avoid build errors.
11+
Also, for Android update your Google Repository in the Android SDK manager (type `android` on the command prompt),
12+
and for iOS do a `pod repo update` to fetch the latest versions from Cocoapods.
13+
14+
- iOS: 3.11.x
15+
- Android: 10.0.x
16+
17+
### Fixes
18+
- [#237](https://github.com/EddyVerbruggen/nativescript-plugin-firebase/issues/237) Notification message not shown when app is in the background
19+
- [#243](https://github.com/EddyVerbruggen/nativescript-plugin-firebase/issues/243) iOS: Push Notifications not working in Background or when application is reopened
20+
- [#258](https://github.com/EddyVerbruggen/nativescript-plugin-firebase/issues/258) iOS Notification not received in background mode
21+
- [#264](https://github.com/EddyVerbruggen/nativescript-plugin-firebase/issues/264) iOS: Push Notifications not working in Background in Production
22+
23+
24+
25+
426
## 3.9.1 (2017, January 18)
527

628
[Full changelog](https://github.com/EddyVerbruggen/nativescript-plugin-firebase/compare/3.9.0...3.9.1)

docs/MESSAGING.md

Lines changed: 5 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -41,7 +41,7 @@ Open /platforms/ios/yourproject.__xcworkspace__ (!) and go to your project's tar
4141

4242
> Without this enabled you will receive push messages in the foreground, but **NOT in the background** / when the app is killed.
4343
44-
##### copy the entitlements file
44+
#### Copy the entitlements file
4545
The previous step created a the file`platforms/ios/YourAppName/Resources/YourAppName.entitlements`.
4646
Copy that file to `app/App_Resources/iOS/` (if it doesn't exist yet, otherwise merge its contents),
4747
so it's not removed when you remove and re-add the iOS platform. The relevant content for background push in that file is:
@@ -51,7 +51,7 @@ so it's not removed when you remove and re-add the iOS platform. The relevant co
5151
<string>development</string>
5252
```
5353

54-
#### Receiving remote notifications in the background
54+
#### Allow processing when a background push is received
5555
Open `app/App_Resources/iOS/Info.plist` and add this to the bottom:
5656

5757
```xml
@@ -61,6 +61,9 @@ Open `app/App_Resources/iOS/Info.plist` and add this to the bottom:
6161
</array>
6262
```
6363

64+
#### Cleanup up an old script
65+
Versions up to 3.9.2 of this plugin added the script `/hooks/after-prepare/firebase-install-ios-entitlements.js`, please remove it.
66+
6467
#### Provisioning hell
6568
Follow [this guide](https://firebase.google.com/docs/cloud-messaging/ios/certs) to the letter. Once you've done it run `tns run ios` and upon starting the app it should prompt you for notification support. That also works on the simulator, but actually receiving notifications is _only_ possible on a real device.
6669

0 commit comments

Comments
 (0)