Skip to content

francisco-alvarado-espol/titanium-firebase-core

 
 

Folders and files

NameName
Last commit message
Last commit date

Latest commit

 

History

78 Commits
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 

Repository files navigation

Firebase Core - Titanium Module

Use the native Firebase SDK in Axway Titanium. This repository is part of the Titanium Firebase project.

Requirements

  • Titanium SDK 7.0.0+

Download

API's

FirebaseCore

Methods

configure() -> Boolean

Configure Firebase without additional parameters.

Returns false if it was already configured or if there was an error. Calling deleteInstanceId() can be used to re-configure it.

configure(parameters)

Configure Firebase with configuration parameters:

Name Type Component Platform
file String *

By passing the file property, you can give a location to the Firebase plist file (usually named "GoogleService-Info.plist"), which contains all necessary properties for your Firebase project. This makes all other properties unnecessary. For Android: place the file in /app/assets/android/ and pass just the filename.

Or you can configure Firebase without a file by passing these parameters:

Name Type Component Platform
googleAppID String *
GCMSenderID String Cloud Messaging *
APIKey String Auth *
projectID String *
databaseURL String Real Time Database *
storageBucket String Storage Bucket *
bundleID String iOS
clientID String iOS
trackingID String iOS
androidClientID String iOS
deepLinkURLScheme String iOS
logLevel `LOG_LEVEL_* [ERROR WARNING NOTICE
applicationID String Analytics Android
fetchInstanceId(callback) (iOS)

Returns a result of app instance identifier InstanceID and a Firebase Messaging scoped token.

The callback receives an object containing this fields:

Key Type Description Platform
fcmToken String The current FCM token *
error String The localized error message, if set *
deleteInstanceId(callback) (iOS)

Delete the current instanceId (invalidating all tokens).

The callback receives an object containing this fields:

Key Type Description Platform
success Boolean true if the deletion succeeded *
error String The localized error message, if set *
deleteToken(authorizedEntity, scope, callback) (iOS)

Delete the token of the provided authorizedEntity and scope. See the Firebase docs for details.

The callback receives an object containing this fields:

Key Type Description Platform
success Boolean true if the deletion succeeded *
error String The localized error message *

Examples

// Require the Firebase Core module
var FirebaseCore = require('firebase.core');

// Configure your Firebase API's (only required once for all)

FirebaseCore.configure();	// default google-services.json/GoogleService-Info.plist will be used

// alternative way:

FirebaseCore.configure({
  APIKey: "AIYasZBtfJh..........",
  projectID: "test-12345",
  storageBucket: "test-12345.appspot.com",
  applicationID: "1:12345678890:android:abc123efg456"
});

// alternative way:
FirebaseCore.configure({
  file: "filename.json"
});

Build

cd [ios|android]
appc run -p [ios|android] --build-only

iOS Notes

If you are also using Ti.GoogleSignIn you will probably have a duplicate symbols error. Both Ti.GoogleSignIn and this module share some common dependencies. In order to solve this conflict, remove the GTMSessionFetcher.framework and GoogleToolboxForMac.framework files from <YOUR_PROJECT_DIR>/modules/iphone/firebase.core/<VERSION>/platform and rebuild your app.

Legal

This module is Copyright (c) 2017-Present by Hans Knöchel. All Rights Reserved.

About

Use the Firebase Core SDK in Axway Titanium 🚀

Resources

License

Stars

Watchers

Forks

Packages

No packages published

Languages

  • C 43.3%
  • Objective-C 40.8%
  • Python 9.9%
  • Java 5.8%
  • JavaScript 0.2%