angularjs - Uncaught Error: A network error -


after i've tried use firebase authentication service, got uncaught error: network error (such timeout, interrupted connection or unreachable host) has occurred

i have tried whitelist related domain-names:

  <allow-intent href="*.firebaseio.com" />   <allow-intent href="*.firebaseapp.com" />   <allow-intent href="*.google.com" />   <allow-intent href="*.googleapis.com" />   <allow-intent href="*.cloudflare.com" />   <allow-intent href="auth.firebase.com" />   <access origin="*" /> 

and ask internet user permission:

<uses-permission android:name="android.permission.internet" /> <uses-permission android:name="android.permission.access_network_state" /> 

but still - despite code run on web browser, keep showing error on android emulator.

try, this. worked me.

<allow-navigation href="*.firebaseapp.com" /> 

Comments

Popular posts from this blog

mysql - Dreamhost PyCharm Django Python 3 Launching a Site -

java - Sending SMS with SMSLib and Web Services -

java - How to resolve The method toString() in the type Object is not applicable for the arguments (InputStream) -