Use the native Firebase SDK in Axway Titanium. This repository is part of the Titanium Firebase project.
The whole Firebase support in Titanium is developed and maintained by the community (@hansemannn
and @m1ga
). To keep
this project maintained and be able to use the latest Firebase SDK's, please see the "Sponsor" button of this repository,
thank you!
- The Firebase Core module
- Titanium SDK 6.3.0+
url
(String)
path
(String)
parameters
(Dictionary)data
(Ti.Blob | String)callback
(Function)
parameters
(Dictionary)maxSize
(Number)callback
(Function)
parameters
(Dictionary)callback
(Function)
callback
(Function)
// Require the Firebase Storage module
var FirebaseStorage = require('firebase.storage');
FirebaseStorage.upload({
data: myBlob,
callback: function(e) {
if (!e.success) {
Ti.API.error('Error: ' + e.error);
}
Ti.API.info('Upload completed! Download-URL: ' + e.downloadURL);
}
});
cd ios
appc ti build -p ios --build-only
This module is Copyright (c) 2017-Present by Appcelerator, Inc. All Rights Reserved. Usage of this module is subject to the Terms of Service agreement with Appcelerator, Inc.