/ionic-base

basic authentication and user profile using ionic and fire base

Primary LanguageTypeScriptApache License 2.0Apache-2.0

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];