Skip to content

Instantly share code, notes, and snippets.

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