Skip to content
This repository was archived by the owner on Mar 16, 2019. It is now read-only.
This repository was archived by the owner on Mar 16, 2019. It is now read-only.

[android] Linking.openURL and RNFetchBlob and the same time crash the app. #482

Open
@treemore

Description

@treemore

the problem is in android.
you can copy the below code in your componentDidMount will be reproduce the problem

// componentDidMount method set the code
  Linking.openURL('https://github.com')
  RNFetchBlob.config().fetch("GET", "https://www.google.com")
            .then(function () {
            })

red window said:
Error in callNativeModules() :6,32,2,11 https://github.com 44.45.22
did not get valid calls back from js
and android studio monitor has not show any error message .

when i use the blow code ,they can do good work.

  Linking.openURL('https://github.com')
 fetch("https://www.google.com").then(function () {

        })

and the version is "0.10.6"

Metadata

Metadata

Assignees

No one assigned

    Labels

    Projects

    No projects

    Milestone

    No milestone

    Relationships

    None yet

    Development

    No branches or pull requests

    Issue actions