Maliffic / firebase_ui

Geek Repo:Geek Repo

Github PK Tool:Github PK Tool

Andrid: error while an app starts

tarasryb opened this issue · comments

While my application is starting I got an error:
"Error connecting to the service protocol: failed to connect to http://127.0.0.1:59497/frvY4Ok_d5Y=/"
Application disappears from phone screen, but Android Studio thinks the app still run.

I am having this same issue. Have you resolved this @tarasryb?

I was able to solve it by adding the following to the Application tag of the AndroidManifest.xml:

<meta-data android:name="com.facebook.sdk.ApplicationId" android:value="@string/facebook_app_id"/>

And the following to res/values/string.xml:

<?xml version="1.0" encoding="utf-8"?> <resources> <string name="facebook_app_id">{insert_facebook_app_id_here}</string> <string name="fb_login_protocol_scheme">fb{insert_facebook_app_id_here}</string> </resources>

is this package Abandoned?