开发服务器返回响应错误代码:500

时间:2017-06-06 08:53:07

标签: android react-native react-native-android

我正在尝试将native native实现到我现有的原生android应用程序中。 我在我的应用程序中添加了一个ReactActivity。 它运行得很好。

突然发出错误"开发服务器返回响应错误代码:500"进入ReactActivity enter image description here

这是我的控制台输出..' enter image description here

我尝试过重新安装节点和守望者。 我还尝试删除node_module文件夹。

这是我的ReactActivity.java类

    private ReactRootView mReactRootView;
    private ReactInstanceManager mReactInstanceManager;

    @Override
    protected void onCreate(Bundle savedInstanceState) {
        super.onCreate(savedInstanceState);

        if (Build.VERSION.SDK_INT >= Build.VERSION_CODES.M) {
            if (!Settings.canDrawOverlays(this)) {
                Intent intent = new 
Intent(Settings.ACTION_MANAGE_OVERLAY_PERMISSION,
                        Uri.parse("package:" + getPackageName()));
                startActivityForResult(intent, 0);
            }
        }

        HashMap<String,Object> extras = new HashMap<>();
        extras.put("page_name","Football team");

        mReactRootView = new ReactRootView(this);
        mReactInstanceManager = ReactInstanceManager.builder()
                .setApplication(getApplication())
                .setBundleAssetName("index.android.bundle")
                .setJSMainModuleName("index.android")
                .addPackage(new MainReactPackage())
                .setUseDeveloperSupport(BuildConfig.DEBUG)

           .setInitialLifecycleState(LifecycleState.RESUMED).build();
          mReactRootView.startReactApplication(mReactInstanceManager, "HelloWorld", null);
         setContentView(mReactRootView);
    }

0 个答案:

没有答案