This repository was archived by the owner on Apr 4, 2023. It is now read-only.
File tree Expand file tree Collapse file tree 2 files changed +10
-9
lines changed Expand file tree Collapse file tree 2 files changed +10
-9
lines changed Original file line number Diff line number Diff line change @@ -33,6 +33,16 @@ From the command prompt go to your app's root folder and execute:
3333tns plugin add nativescript-plugin-firebase
3434```
3535
36+ ### Start-up wiring
37+ We need to do some wiring when your app starts, so open ` app.js ` and add this before ` application.start(); ` :
38+
39+ ``` js
40+ var firebase = require (" nativescript-plugin-firebase" );
41+ ```
42+
43+ _ Note that if you previously (before plugin version 3.3.0) added some other code for this plugin to ` app.js ` you can now go ahead and remove it._
44+
45+
3646### Android
3747Install packages 'Google Play Services' and 'Google Repository' in your [ Android SDK Manager] ( http://stackoverflow.com/a/37310513 )
3848
Original file line number Diff line number Diff line change @@ -189,15 +189,6 @@ Don't forget to enable Facebook login in your firebase instance.
189189 )
190190```
191191
192- #### Start-up wiring
193- We need to do some wiring when your app starts, so open ` app.js ` and add this before ` application.start(); ` :
194-
195- ``` js
196- var firebase = require (" nativescript-plugin-firebase" );
197- ```
198-
199- _ Note that if you previously added some other code for this plugin to ` app.js ` you can now go ahead and remove it._
200-
201192### logout
202193Shouldn't be more complicated than:
203194
You can’t perform that action at this time.
0 commit comments