Contact List by useing Firebase
run command. Make for apk - npm install promise-polyfill --save-exact npm install angularfire2 firebase --save First Create a new page under src folder (environments) and then create and new file (environment.ts). environment.ts import this export const environment = { production: false, firebase: { apiKey: "AIzaSyAs7L8jvLomQInVEWI6h2jwzuZy9w20czM", authDomain: "mycontactlist-81682.firebaseapp.com", databaseURL: "https://mycontactlist-81682.firebaseio.com", projectId: "mycontactlist-81682", storageBucket: "mycontactlist-81682.appspot.com", messagingSenderId: "987292039015" } }; app.module.ts import { AngularFireDatabase, FirebaseListObservable } from 'angularfire2/database'; import { AngularFireModule } from 'angularfire2'; import { AngularFireDatabaseModule } from 'angularfire2/database'; import { AngularFireA...