Created
August 16, 2017 08:34
-
-
Save alien3d/beb4bf1137f4580df588234f4b6c4dea to your computer and use it in GitHub Desktop.
Main Activity .. only add Facebook Callback code
This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
package com.example; | |
import com.reactnativenavigation.controllers.SplashActivity; | |
import android.content.Intent; | |
public class MainActivity extends SplashActivity { | |
@Override | |
public void onActivityResult(int requestCode, int resultCode, Intent data) { | |
super.onActivityResult(requestCode, resultCode, data); | |
MainApplication.getCallbackManager().onActivityResult(requestCode, resultCode, data); | |
} | |
} |
Sign up for free
to join this conversation on GitHub.
Already have an account?
Sign in to comment