Created
August 17, 2017 08:09
-
-
Save alien3d/d5f7c8685cba093203690ff6c30b44ad to your computer and use it in GitHub Desktop.
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