hone5t / ionic-base

basic authentication and user profile using ionic and fire base

Geek Repo:Geek Repo

Github PK Tool:Github PK Tool

Ionic Firebase Authentication

Genrate Icons & Splash screens

ionic cordova resources

Issues

stackoverflow error-in-firebase-app-shared-promise-js) to fix error when trying to run ionic cordova emulate

$npm install promise-polyfill --save-exact  

stackoverflow fix error cannot read property 'replace' of undefined when runing ionic cordova emulate ios

cd platforms/ios/cordova/node_modules/  
sudo npm install ios-sim@latest  

if you have the same error when emulate android then
on file /platforms/android/cordova/lib/emulator.js line 202: replace

var num = target.split('(API level ')[1].replace(')', '');  

to

var num = target.match(/\d+/)[0];  

About

basic authentication and user profile using ionic and fire base

License:Apache License 2.0


Languages

Language:TypeScript 55.9%Language:HTML 25.9%Language:CSS 14.8%Language:JavaScript 3.3%