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

Multilayer CSV to filtered excel -

Listboxes in c# -

ios - Why must I define variables twice in the Header file? -