Skip to content

Latest commit

 

History

History
28 lines (21 loc) · 598 Bytes

README.md

File metadata and controls

28 lines (21 loc) · 598 Bytes

Firebase Remote Config using flutter to A/B POC

Credentials

Insert your Firebase Optins in the main.dart file

await Firebase.initializeApp(
    options: FirebaseOptions(
      apiKey: 'API-KEY',
      appId: 'APP-ID',
      messagingSenderId: 'MESSAGESENDER-ID',
      projectId: 'PROJECT-ID',
      authDomain: 'AUTH-DOMAIN',
      storageBucket: 'STORAGE'
    ),
  );

Installation

Application requires Flutter to run.

Create a parameter (Key: Text) in remote config on Firebase Console, and start the application.

flutter run -d chrome