All Projects → myflashlab → Firebase-ANE

myflashlab / Firebase-ANE

Licence: other
Firebase ANE collection give you access to the Google Firebase project in your AdobeAir projects supported on both Android and iOS with 100% identical ActionScript API.

Programming Languages

actionscript
884 projects
AngelScript
46 projects
Batchfile
5799 projects

Projects that are alternatives of or similar to Firebase-ANE

common-dependencies-ANE
In this repository find all the required shared libraries for our Air Native Extensions to make sure your final app will have the minimum required libraries so your app won't be unnecessarily huge in size.
Stars: ✭ 24 (-57.14%)
Mutual labels:  air, adobe-air, ane
Moonshine-IDE
Moonshine is a free and open source middleweight IDE built with ActionScript 3 for ActionScript 3, Apache Flex®, Apache Royale™, and Feathers development, with Cloud and Desktop support.
Stars: ✭ 86 (+53.57%)
Mutual labels:  air, adobe-air, adobeair
AR-ANE-Samples
MyAR is an augmented reality Air Native Extension supporting Android and iOS based on Wikitude SDK
Stars: ✭ 39 (-30.36%)
Mutual labels:  adobe-air, ane
Swift-IOS-ANE
FlashRuntimeExtensions.swift. Example Air Native Extension written in Swift 5 for iOS, macOS and tvOS
Stars: ✭ 56 (+0%)
Mutual labels:  adobe-air, ane
DesktopToastANE
Adobe Air Native Extension for displaying adaptive and interactive toast notifications in Windows 8, 10 and OSX
Stars: ✭ 28 (-50%)
Mutual labels:  adobe-air, ane
AIRFacebook-ANE
Native extension for Adobe AIR providing cross-platform API to Facebook SDK 4
Stars: ✭ 19 (-66.07%)
Mutual labels:  adobe-air, ane
ANE-GooglePlayServices
Shared library including the Google Play Services Client Library
Stars: ✭ 19 (-66.07%)
Mutual labels:  adobe-air, ane
ANE-AndroidSupport
Android Support Library Native Extension
Stars: ✭ 21 (-62.5%)
Mutual labels:  adobe-air, ane
AdMob-ANE
AdMob Adobe Air Native Extension for iOS 10.0+, Android 19+. Supports Banner, Interstitial and RewardVideo ads
Stars: ✭ 26 (-53.57%)
Mutual labels:  adobe-air
feathersui-starling-sdk
SDK for building Feathers UI (Starling) applications with MXML
Stars: ✭ 41 (-26.79%)
Mutual labels:  adobe-air
homebridge-panasonic-air-conditioner
Panasonic Air Conditioner / Heat Pump plugin for HomeBridge using the Panasonic Comfort Cloud API to expose Panasonic Air Conditioners to Apples HomeKit
Stars: ✭ 32 (-42.86%)
Mutual labels:  air
ANE-LAB
ANE-LAB installs AIR Native Extension files in your project automatically.
Stars: ✭ 29 (-48.21%)
Mutual labels:  adobe-air
flextreemap
TreeMap data visualization component for Adobe Flex
Stars: ✭ 22 (-60.71%)
Mutual labels:  adobe-air
starling-preloader
An example preloader for Starling Framework running in Adobe Flash Player in a web browser
Stars: ✭ 24 (-57.14%)
Mutual labels:  adobe-air
ropenaq
⛔ ARCHIVED ⛔ Accesses Air Quality Data from the Open Data Platform OpenAQ
Stars: ✭ 69 (+23.21%)
Mutual labels:  air
ArduinoWeatherOS
Arduino Uno, 433MhzRx and OS WMR86 Weather Station
Stars: ✭ 69 (+23.21%)
Mutual labels:  air
CanAirIO
W A R N I N G: This is a previous proof of concept of CanAirIO device firmware over a TTGO T-Display board, but now it is only a old reference. The last stable version of CanAirIO device already have support for this board and many features more. Please use the official CanAirIO Firmware instead of this firmware. https://github.com/kike-canaries…
Stars: ✭ 12 (-78.57%)
Mutual labels:  air
icon-generator
Generate icons and launch screens for your Adobe AIR projects.
Stars: ✭ 24 (-57.14%)
Mutual labels:  adobe-air
EnviroMonitorStation
Arduino compatible software for ESP8266 based environmental monitoring station. Includes temperature, humidity, barometric pressure and PM2.5, PM10 dust monitoring
Stars: ✭ 71 (+26.79%)
Mutual labels:  air
kaec-app
An Apache Flex mobile app that uses the Youtube V3 API, Foursquare API, Flickr API and RSS feeds.
Stars: ✭ 12 (-78.57%)
Mutual labels:  adobe-air

Firebase AIR Native Extension

Firebase ANE gives you access to the Google Firebase project in your AIR projects supported on both Android and iOS with 100% identical ActionScript API.

If you decide to use Firebase in your next AIR project, you should consider the following structure: Firebase AIR Native Extension is consist of a Core ANE plus some other individual ANEs which are all dependent on the Core. i.e, If you wish to use Firebase Cloud Messaging (FCM), you need to embed the Core ANE first and then use the required ANE(s) for the FCM. This structure will make sure that you are not compiling unused native code in your project. In result, your app file size will be as small as possible and faster to debug/compile. The Wiki pages will provide you detailed information about how you can embed each ANE based on the Firebase feature you wish to use in your app.

Main Features:

  • Analytics Reimagine analytics for mobile
  • Cloud Messaging (FCM) Deliver and receive messages across platforms reliably
    • Also includes the OneSignal library.
  • Authentication Reduce friction with robust authentication
  • Realtime Database Store and sync app data in realtime
  • Functions Run backend code in response to events
  • Firestore Store and sync app data at global scale
  • Storage Store files with ease
  • Remote Config Customize your app on the fly
  • Performance Gain insight into your app's performance issues.
  • Crashlytics Get clear, actionable insight into app issues
  • Dynamic Links Send users to the right place inside your app
  • MLKit Use machine learning in your apps to solve real-world problems Deprecated

find the latest asdoc for Firebase ANEs here.
How to get started? read here

Sample AS3 codes

Air Usage

import com.myflashlab.air.extensions.dependency.OverrideAir;
import com.myflashlab.air.extensions.firebase.core.*;

// Remove OverrideAir debugger in production builds
OverrideAir.enableDebugger(function ($ane:String, $class:String, $msg:String):void
{
	trace($ane+" ("+$class+") "+$msg);
});

// initialize the Firebase as early as possible in your project
var isConfigFound:Boolean = Firebase.init();

// If you wish to see the Firebase SDK debugging logs in detail, use the following
Firebase.setLoggerLevel(FirebaseConfig.LOGGER_LEVEL_MAX);

/*
	Calling Firebase.init() is just good enough to initialize Firebase core in your Air 
	project. However for debugging reasons, you can check the config values like below:
	
	What config files you may ask? well, This is explained in details in the Wiki pages. 
	https://github.com/myflashlab/Firebase-ANE/wiki but to give you a quick idea, I 
	should say that before being able to start with Firebase, you need to create a 
	Firebase account (It's free) and introduce your app to your Firebase console. When 
	you do that, your Firebase console will give you a config file. it will be a .plist 
	for iOS "GoogleService-Info.plist" and a .json file "google-services.json" for the 
	Android side. The content of these two config files are similar to these: 
	https://github.com/myflashlab/Firebase-ANE/tree/master/AIR/bin
	
	You need to make sure that these two config files are being embedded in your project 
	by putting them in the bin folder of your project. (Next to the main .swf file of 
	your app)
*/

if (isConfigFound)
{
	var config:FirebaseConfig = Firebase.getConfig();
	trace("default_web_client_id = " + 			config.default_web_client_id);
	trace("firebase_database_url = " + 			config.firebase_database_url);
	trace("gcm_defaultSenderId = " + 			config.gcm_defaultSenderId);
	trace("google_api_key = " + 				config.google_api_key);
	trace("google_app_id = " + 					config.google_app_id);
	trace("google_crash_reporting_api_key = " + config.google_crash_reporting_api_key);
	trace("google_storage_bucket = " + 			config.google_storage_bucket);
	trace("project_id = " + 					config.project_id);

	// You must init other Firebase children after a successful initialization of the Core ANE.
	// readyToUseFirebase();
}
else
{
	trace("Config file is not found!");
}

/*
	To know how to use other features of Firebase, read the Wiki:
	https://github.com/myflashlab/Firebase-ANE/wiki
*/

Firebase ANEs are dependent on some other ANEs and frameworks. Complete information about these dependencies are explained in wiki pages. However, to make sure you are not confused with all these settings, you are encouraged to use the ANE-LAB Software.

Requirements

  1. Android API 19+
  2. iOS SDK 10.0+
  3. Air SDK 30+
  4. Every Firebase ANE might need some dependency Frameworks/ANEs which is explained in details here.

Commercial Version

Firebase ANE

Tutorials

How to embed ANEs into FlashBuilder, FlashCC and FlashDevelop
How to support Firebase in my Air app?
How to use Firebase Realtime database?
How to use Firebase Firestore?
How to use Firebase Remote Config?
How to use Firebase Authentication?
How to use Firebase Storage?
How to use Crashlytics?
How to use Firebase FCM + OneSignal?
How to use Firebase Analytics?
How to use Firebase Dynamic Links?
How to use Firebase MLKit?
How to use Firebase Performance?
How to use Firebase Functions?

Premium Support

Premium Support package If you are an active MyFlashLabs club member, you will have access to our private and secure support ticket system for all our ANEs. Even if you are not a member, you can still receive premium help if you purchase the premium support package.


DISCRIMINATION: Firebase SDKs are developed by Google and they own every copyright to the Firebase "native" projects. However, we have used their "compiled" native SDKs to develop the ActionScript API to be used in Adobe Air mobile projects. Moreover, as far as the documentations, we have copied and when needed has modified the Google documents so it will fit the needs of Adobe Air community. If you wish to see the original documentations in Android/iOS, visit here. But if you are interested to do things in Adobe Air, then you are in the right place.

Note that the project description data, including the texts, logos, images, and/or trademarks, for each open source project belongs to its rightful owner. If you wish to add or remove any projects, please contact us at [email protected].