Skip to content

nbottarini/expo-firebase-app-distribution

Repository files navigation

npm License: MIT CI Status

expo-firebase-app-distribution

Expo plugin for firebase app distribution

Installation

Npm:

$ npm install --save expo-firebase-app-distribution @react-native-firebase/app @react-native-firebase/app @react-native-firebase/app-distribution 

Yarn:

$ yarn add expo-firebase-app-distribution @react-native-firebase/app @react-native-firebase/app @react-native-firebase/app-distribution

Add plugins to your app.json:

{
  "expo": {
    "android": {
      "googleServicesFile": "./google-services.json",
      "package": "com.mycorp.myapp"
    },
    "ios": {
      "googleServicesFile": "./GoogleService-Info.plist",
      "bundleIdentifier": "com.mycorp.myapp"
    },
    "plugins": [
      "@react-native-firebase/app",
      "expo-firebase-app-distribution"
    ]
  }
}

Usage

Please refer to React Native Firebase App Distribution docs.