Skip to content

Latest commit

History

History
19 lines (17 loc) 路 733 Bytes

File metadata and controls

19 lines (17 loc) 路 733 Bytes

firebase-expo-auth-basic

馃搶 Basic structure for integrating expo-router and Firebase (w. typescript)
馃敄 Reference material: Firebase Authentication W/ Expo Router - Expo 50 : Jeremy

鈿狅笍 Before running, you need to update values like the API key in firebase.config.ts to match your project's key.馃槃

//Please change it in your firebase.config.ts file.
const firebaseConfig = {
  apiKey: 'YOUR_API_KEY',
  authDomain: 'YOUR_AUTH_DOMAIN',
  projectId: 'YOUR_PROJECT_ID',
  storageBucket: 'YOUR_STORAGE_BUCKET',
  messagingSenderId: 'YOUR_MESSAGING_SENDER_ID',
  appId: 'YOUR_APP_ID',
  //measurementId can be omitted.
  measurementId: 'YOUR_MEASUREMENT_ID',
};