![Oracle Drags Its Feet in the JavaScript Trademark Dispute](https://cdn.sanity.io/images/cgdhsj6q/production/919c3b22c24f93884c548d60cbb338e819ff2435-1024x1024.webp?w=400&fit=max&auto=format)
Security News
Oracle Drags Its Feet in the JavaScript Trademark Dispute
Oracle seeks to dismiss fraud claims in the JavaScript trademark dispute, delaying the case and avoiding questions about its right to the name.
@nativescript/firebase-core
Advanced tools
A plugin to initialize FirebaseApp in your app.
Use this plugin with any of the following plugins:
Install the plugin by running the following command in the root directory of your project.
npm install @nativescript/firebase-core
To configure Firebase for Android, see Add Firebase to your Android project and follow the steps below.
Add a Firebase configuration file : Download the google-services.json
file and add it to App_Resources/Android/src
.
To set up Firebase for iOS, see Add Firebase to your Apple project and follow the steps below:
GoogleService-Info.plist
file and add it to App_Resources/iOS/
.🚨 Plugin requires both @nativescript/firebase-core
and any other @nativescript/firebase-*
plugin to successfully initialize.
Import the firebase
function and call it to create a NativeScript Firebase instance. Next, call the initializeApp
method on the Firebase instance to instantiate the native FirebaseApp.
import { firebase } from '@nativescript/firebase-core'
const defaultApp = await firebase().initializeApp();
import { firebase, FirebaseOptions } from '@nativescript/firebase-core'
const config = new FirebaseOptions()
const secondaryApp = await firebase().initializeApp(config, 'SECONDARY_APP');
Apache License Version 2.0
FAQs
NativeScript Firebase - Core
The npm package @nativescript/firebase-core receives a total of 1,499 weekly downloads. As such, @nativescript/firebase-core popularity was classified as popular.
We found that @nativescript/firebase-core demonstrated a healthy version release cadence and project activity because the last version was released less than a year ago. It has 0 open source maintainers collaborating on the project.
Did you know?
Socket for GitHub automatically highlights issues in each pull request and monitors the health of all your open source dependencies. Discover the contents of your packages and block harmful activity before you install or update your dependencies.
Security News
Oracle seeks to dismiss fraud claims in the JavaScript trademark dispute, delaying the case and avoiding questions about its right to the name.
Security News
The Linux Foundation is warning open source developers that compliance with global sanctions is mandatory, highlighting legal risks and restrictions on contributions.
Security News
Maven Central now validates Sigstore signatures, making it easier for developers to verify the provenance of Java packages.