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

Commit 596f1ea

Browse files
bump
1 parent 2e7638e commit 596f1ea

File tree

3 files changed

+26
-15
lines changed

3 files changed

+26
-15
lines changed

CHANGELOG.md

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

33

4+
## 3.12.0 (2017, June 4)
5+
6+
[Full changelog](https://github.com/EddyVerbruggen/nativescript-plugin-firebase/compare/3.11.4...3.12.0)
7+
8+
### SDK versions
9+
10+
- iOS: 3.17.0
11+
- Android: 10.2.x
12+
13+
### New
14+
15+
- [#199](https://github.com/EddyVerbruggen/nativescript-plugin-firebase/issues/199) Feature request: Invites
16+
- [#362](https://github.com/EddyVerbruggen/nativescript-plugin-firebase/issues/362) Add Feature Firebase Invites (Android)
17+
- [#383](https://github.com/EddyVerbruggen/nativescript-plugin-firebase/issues/383) Auto-upgrade com.google.gms:google-services:3.0.0 to 3.1.0
18+
19+
20+
21+
422
## 3.11.4 (2017, April 21)
523

624
[Full changelog](https://github.com/EddyVerbruggen/nativescript-plugin-firebase/compare/3.11.3...3.11.4)

README.md

Lines changed: 5 additions & 13 deletions
Original file line numberDiff line numberDiff line change
@@ -39,19 +39,8 @@ From the command prompt go to your app's root folder and execute:
3939
tns plugin add nativescript-plugin-firebase
4040
```
4141

42-
Now start an install script which will guide you through installing additional components. Check the doc links above to see what's what. You can always change your choices later.
43-
44-
```
45-
cd node_modules/nativescript-plugin-firebase
46-
```
47-
48-
If you run NativeScript 2.5.0 (only that exact version) then run (with other versions this runs automatically through a postinstall script):
49-
50-
__NativeScript 2.5.0 is no longer the latest release, so you might as well update before adding this plugin to avoid this issue.__
51-
52-
```
53-
npm run setup
54-
```
42+
This will launch an install script which will guide you through installing additional components.
43+
Check the doc links above to see what's what. You can always change your choices later.
5544

5645
### Config
5746
If you choose to save your config during the installation, the supported options may be saved in the `firebase.nativescript.json` at the root of your app.
@@ -61,6 +50,9 @@ You can reconfigure the plugin by going to the `node_modules/nativescript-plugin
6150

6251
You can also change the configuration by deleting the `firebase.nativescript.json` and reinstalling the plugin.
6352

53+
### iOS
54+
The Firebase iOS SDK is installed via Cocoapods, so run `pod repo update` to ensure you have the latest spec.
55+
6456
### Android
6557
Install the latest packages 'Google Play Services' and 'Google Repository' in your [Android SDK Manager](http://stackoverflow.com/a/37310513)
6658

package.json

Lines changed: 3 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -1,6 +1,6 @@
11
{
22
"name": "nativescript-plugin-firebase",
3-
"version": "3.11.4",
3+
"version": "3.12.0",
44
"description": "Fire. Base. Firebase!",
55
"main": "firebase",
66
"typings": "index.d.ts",
@@ -34,7 +34,8 @@
3434
"postinstall": "node postinstall-hooks.js && node scripts/postinstall.js",
3535
"preuninstall": "node preuninstall-hooks.js",
3636
"setup": "node scripts/postinstall.js setup",
37-
"config": "node scripts/postinstall.js config"
37+
"config": "node scripts/postinstall.js config",
38+
"test": "echo 'TODO implement tests :)'"
3839
},
3940
"repository": {
4041
"type": "git",

0 commit comments

Comments
 (0)