Skip to content

Releases: NativeScript/firebase

1.0.0-alpha.40

04 Feb 06:11
Compare
Choose a tag to compare
chore(demo): log error

1.0.0-alpha.39

04 Feb 05:28
Compare
Choose a tag to compare
fix: app delegate handling

1.0.0-alpha.38

27 Jan 14:15
Compare
Choose a tag to compare
chore: bump

1.0.0-alpha.37

26 Jan 13:48
Compare
Choose a tag to compare
chore: bump

1.0.0-alpha.36

21 Jan 02:46
Compare
Choose a tag to compare
chore: bump

1.0.0-alpha.35

20 Jan 02:25
Compare
Choose a tag to compare
fix(firestore): onSnapshot handling

1.0.0-alpha.34

12 Jan 21:11
Compare
Choose a tag to compare
fix(admob): missing typings

1.0.0-alpha.33

12 Jan 20:33
Compare
Choose a tag to compare
fix(admob): include typings

1.0.0-alpha.32

05 Jan 15:15
Compare
Choose a tag to compare
chore: bump

1.0.0-alpha.31

31 Dec 01:24
b01b075
Compare
Choose a tag to compare
Implement client-side Firebase Cloud Functions locations (#23)

* Implement client-side Firebase Cloud Functions locations

Allows client-side Functions calls to remote functions using a supported 
Region (Android & iOS) or Custom Domain (iOS only).

See 
https://firebase.google.com/docs/functions/locations#client-side_location_selection_for_callable_functions

Adds a method to FirebaseApp ('functions') to set Region or 
CustomDomain. 

Example usage: firebase().app().functions("europe-west")

See 
https://firebase.google.com/docs/reference/node/firebase.app.App#functions

Example client-side call:
firebase().functions().httpsCallable('functionName')()
calls Cloud Function:
exports functionName = functions.region('europe-west1')...
See 
https://firebase.google.com/docs/functions/locations#best_practices_for_changing_region

Supported regions: See 
https://firebase.google.com/docs/functions/locations

By default functions run in the "us-central1" region, unless another 
region is selected.

Android Functions Emulator: Set 'localhost' host to 10.0.2.2

* Update README.md file with usage instructions

* Update README.md file with usage instructions

* Clenaup README.md text