takiuddin93 / ChatApp

A Flutter Chat application, using Firebase for Google Sign In/Sign Up and exchange text, emoji and images. Integrated Agora Video Call SDK to communicate over video call
MIT License
104 stars 23 forks source link

/config directory missing? or can you give a demo for the same? #1

Closed amexn-me closed 4 years ago

takiuddin93 commented 4 years ago

I have deliberately removed it from git since it has my agora and firebase API_KEY's

to make it work for you

make a folder inside of lib directory named configs and inside make two files

agora_configs.dart const APP_ID = '_YOUR_AGORA_APIKEY';

and

firebase_configs.dart const SERVER_KEY = '_YOUR_FIREBASE_SERVERKEY';

then your issue will be fixed.

amexn-me commented 4 years ago

Great, I thought the demo config files unfortunately ended up in .gitignore.

And thanks for that.