Reputation: 175
I am working on ionic hybrid mobile app using angularFire. I am implementing email/password authentication using $firebaseAuth service. It is working properly on chrome browser but when installed on android device it is giving error 'Unable to contact the Firebase server.' My andorid application has full network access permission and permissions to use data and wify.
code and APK link https://github.com/ajayparsana/MyFirebaseApp
Please help.
Upvotes: 1
Views: 1125
Reputation: 175
I have installed cordova inappbrowser & whitelist plugin and also add below lines in config.xml file after line to solve my problem
<access origin="*" />
<allow-navigation href="*" />
<allow-intent href="*.firebaseio.com" />
<allow-intent href="auth.firebase.com" />
Upvotes: 1