You signed in with another tab or window. Reload to refresh your session.You signed out in another tab or window. Reload to refresh your session.You switched accounts on another tab or window. Reload to refresh your session.Dismiss alert
{{ message }}
This repository was archived by the owner on Feb 14, 2020. It is now read-only.
Facebook user login doesn't work as expected when I use Parse.enableLocalDatastore, but without Parse.enableLocalDatastore it works perfectly.
I'm currently using com.parse:parse-android:1.11.0 and com.parse:parsefacebookutils-v4-android:1.10.3@aar.
Below is the code i'm trying to execute in production.
public class MyApplication extends Application {
@Override
public void onCreate() {
super.onCreate();
Parse.enableLocalDatastore(this);
if ( BuildConfig.DEBUG ) {
Parse.initialize(this, "xx", "xx");
} else {
Parse.initialize(this, "xx", "xx");
}
ParseConfig.getInBackground();
ParseUser.enableAutomaticUser();
ParseInstallation.getCurrentInstallation().saveInBackground();
ParseFacebookUtils.initialize(this);
}
}
The text was updated successfully, but these errors were encountered:
Sign up for freeto subscribe to this conversation on GitHub.
Already have an account?
Sign in.
Facebook user login doesn't work as expected when I use
Parse.enableLocalDatastore
, but withoutParse.enableLocalDatastore
it works perfectly.I'm currently using
com.parse:parse-android:1.11.0
andcom.parse:parsefacebookutils-v4-android:1.10.3@aar
.Below is the code i'm trying to execute in production.
The text was updated successfully, but these errors were encountered: