Skip to content

Latest commit

 

History

History
21 lines (19 loc) · 557 Bytes

expo_setup.md

File metadata and controls

21 lines (19 loc) · 557 Bytes

Expo Setup

  1. Complete step 1 of the Android and iOS setup guides.

  2. In your app.json|app.config.js|app.config.ts, add the react-native-msal plugin with the androidPackageSignatureHash parameter:

    {
      "expo": {
        // ...
        "plugins": [
          // ...
          [
            "react-native-msal",
            {
              "androidPackageSignatureHash": "<base64 package signature hash>" // ex: "Xo8WBi6jzSxKDVR4drqm84yr9iU="
            }
          ]
        ]
      }
    }