React native fbsdk: Could not invoke FBGraphRequest.start when enable multidex React native app on android












2















I am programming react native app on Android. Since my app has some third party library, so I must be enable multidex with over 65536 methods on Android.



My android/app/build.gradle



android {
defaultConfig {
minSdkVersion 16
targetSdkVersion 25
multiDexEnabled true
}}

dependencies {
compile 'com.android.support:multidex:1.0.3'
}


And I build app successfully. But in my app, I install react-native-fbsdk for login with facebook. There is an error when I have just press login with facebook button:



11-13 20:20:13.707 15581-15640/com.fahasa.android.fahasa E/unknown:ReactNative: Exception in native call
java.lang.RuntimeException: Could not invoke FBGraphRequest.start
at com.facebook.react.bridge.JavaMethodWrapper.invoke(JavaMethodWrapper.java:374)
at com.facebook.react.bridge.JavaModuleWrapper.invoke(JavaModuleWrapper.java:162)
at com.facebook.react.bridge.queue.NativeRunnable.run(Native Method)
at android.os.Handler.handleCallback(Handler.java:733)
at android.os.Handler.dispatchMessage(Handler.java:95)
at com.facebook.react.bridge.queue.MessageQueueThreadHandler.dispatchMessage(MessageQueueThreadHandler.java:31)
at android.os.Looper.loop(Looper.java:136)
at com.facebook.react.bridge.queue.MessageQueueThreadImpl$3.run(MessageQueueThreadImpl.java:194)
at java.lang.Thread.run(Thread.java:841)
Caused by: java.lang.reflect.InvocationTargetException
at java.lang.reflect.Method.invokeNative(Native Method)
at java.lang.reflect.Method.invoke(Method.java:515)
at com.facebook.react.bridge.JavaMethodWrapper.invoke(JavaMethodWrapper.java:363)
at com.facebook.react.bridge.JavaModuleWrapper.invoke(JavaModuleWrapper.java:162) 
at com.facebook.react.bridge.queue.NativeRunnable.run(Native Method) 
at android.os.Handler.handleCallback(Handler.java:733) 
at android.os.Handler.dispatchMessage(Handler.java:95) 
at com.facebook.react.bridge.queue.MessageQueueThreadHandler.dispatchMessage(MessageQueueThreadHandler.java:31) 
at android.os.Looper.loop(Looper.java:136) 
at com.facebook.react.bridge.queue.MessageQueueThreadImpl$3.run(MessageQueueThreadImpl.java:194) 
at java.lang.Thread.run(Thread.java:841) 
Caused by: java.lang.NoSuchMethodError: com.facebook.AccessToken.<init>
at com.facebook.reactnative.androidsdk.FBGraphRequestModule.setConfig(FBGraphRequestModule.java:158)
at com.facebook.reactnative.androidsdk.FBGraphRequestModule.buildRequest(FBGraphRequestModule.java:136)
at com.facebook.reactnative.androidsdk.FBGraphRequestModule.start(FBGraphRequestModule.java:123)
at java.lang.reflect.Method.invokeNative(Native Method) 
at java.lang.reflect.Method.invoke(Method.java:515) 
at com.facebook.react.bridge.JavaMethodWrapper.invoke(JavaMethodWrapper.java:363) 
at com.facebook.react.bridge.JavaModuleWrapper.invoke(JavaModuleWrapper.java:162) 
at com.facebook.react.bridge.queue.NativeRunnable.run(Native Method) 
at android.os.Handler.handleCallback(Handler.java:733) 
at android.os.Handler.dispatchMessage(Handler.java:95) 
at com.facebook.react.bridge.queue.MessageQueueThreadHandler.dispatchMessage(MessageQueueThreadHandler.java:31) 
at android.os.Looper.loop(Looper.java:136) 
at com.facebook.react.bridge.queue.MessageQueueThreadImpl$3.run(MessageQueueThreadImpl.java:194) 
at java.lang.Thread.run(Thread.java:841) 


My package.json



"dependencies": {
"async": "^2.5.0",
"bugsnag-react-native": "^2.2.0",
"he": "^1.1.1",
"moment": "^2.18.1",
"oauth-1.0a": "^2.1.0",
"prop-types": "^15.5.10",
"react": "16.0.0-alpha.12",
"react-native": "0.48.3",
"react-native-camera": "^0.13.0",
"react-native-datepicker": "^1.4.7",
"react-native-device-info": "^0.11.0",
"react-native-drawer": "^2.3.0",
"react-native-dropdown-menu": "^2.0.0",
"react-native-fast-image": "^1.0.0",
"react-native-fbsdk": "^0.6.1",
"react-native-firebase": "1.1.2",
"react-native-image-progress": "^1.0.1",
"react-native-keyboard-aware-scroll-view": "^0.2.7",
"react-native-modal-dropdown": "^0.4.2",
"react-native-navbar": "^1.5.0",
"react-native-onesignal": "^3.0.6",
"react-native-progress": "^3.4.0",
"react-native-push-notification": "^2.2.1",
"react-native-root-toast": "^1.0.3",
"react-native-router-flux": "^3.37.0",
"react-native-scrollable-tab-view": "^0.8.0",
"react-native-swiper": "^1.5.12",
"react-native-vector-icons": "^4.0.0",
"react-native-webview-android": "^1.1.17",
"react-navigation": "^1.0.0-beta.11",
"react-redux": "^5.0.3",
"redux": "^3.7.2",
"redux-logger": "^2.6.1",
"redux-persist": "^4.9.1",
"redux-thunk": "^2.1.0"


},



Please help me.
Thank you so much!










share|improve this question



























    2















    I am programming react native app on Android. Since my app has some third party library, so I must be enable multidex with over 65536 methods on Android.



    My android/app/build.gradle



    android {
    defaultConfig {
    minSdkVersion 16
    targetSdkVersion 25
    multiDexEnabled true
    }}

    dependencies {
    compile 'com.android.support:multidex:1.0.3'
    }


    And I build app successfully. But in my app, I install react-native-fbsdk for login with facebook. There is an error when I have just press login with facebook button:



    11-13 20:20:13.707 15581-15640/com.fahasa.android.fahasa E/unknown:ReactNative: Exception in native call
    java.lang.RuntimeException: Could not invoke FBGraphRequest.start
    at com.facebook.react.bridge.JavaMethodWrapper.invoke(JavaMethodWrapper.java:374)
    at com.facebook.react.bridge.JavaModuleWrapper.invoke(JavaModuleWrapper.java:162)
    at com.facebook.react.bridge.queue.NativeRunnable.run(Native Method)
    at android.os.Handler.handleCallback(Handler.java:733)
    at android.os.Handler.dispatchMessage(Handler.java:95)
    at com.facebook.react.bridge.queue.MessageQueueThreadHandler.dispatchMessage(MessageQueueThreadHandler.java:31)
    at android.os.Looper.loop(Looper.java:136)
    at com.facebook.react.bridge.queue.MessageQueueThreadImpl$3.run(MessageQueueThreadImpl.java:194)
    at java.lang.Thread.run(Thread.java:841)
    Caused by: java.lang.reflect.InvocationTargetException
    at java.lang.reflect.Method.invokeNative(Native Method)
    at java.lang.reflect.Method.invoke(Method.java:515)
    at com.facebook.react.bridge.JavaMethodWrapper.invoke(JavaMethodWrapper.java:363)
    at com.facebook.react.bridge.JavaModuleWrapper.invoke(JavaModuleWrapper.java:162) 
    at com.facebook.react.bridge.queue.NativeRunnable.run(Native Method) 
    at android.os.Handler.handleCallback(Handler.java:733) 
    at android.os.Handler.dispatchMessage(Handler.java:95) 
    at com.facebook.react.bridge.queue.MessageQueueThreadHandler.dispatchMessage(MessageQueueThreadHandler.java:31) 
    at android.os.Looper.loop(Looper.java:136) 
    at com.facebook.react.bridge.queue.MessageQueueThreadImpl$3.run(MessageQueueThreadImpl.java:194) 
    at java.lang.Thread.run(Thread.java:841) 
    Caused by: java.lang.NoSuchMethodError: com.facebook.AccessToken.<init>
    at com.facebook.reactnative.androidsdk.FBGraphRequestModule.setConfig(FBGraphRequestModule.java:158)
    at com.facebook.reactnative.androidsdk.FBGraphRequestModule.buildRequest(FBGraphRequestModule.java:136)
    at com.facebook.reactnative.androidsdk.FBGraphRequestModule.start(FBGraphRequestModule.java:123)
    at java.lang.reflect.Method.invokeNative(Native Method) 
    at java.lang.reflect.Method.invoke(Method.java:515) 
    at com.facebook.react.bridge.JavaMethodWrapper.invoke(JavaMethodWrapper.java:363) 
    at com.facebook.react.bridge.JavaModuleWrapper.invoke(JavaModuleWrapper.java:162) 
    at com.facebook.react.bridge.queue.NativeRunnable.run(Native Method) 
    at android.os.Handler.handleCallback(Handler.java:733) 
    at android.os.Handler.dispatchMessage(Handler.java:95) 
    at com.facebook.react.bridge.queue.MessageQueueThreadHandler.dispatchMessage(MessageQueueThreadHandler.java:31) 
    at android.os.Looper.loop(Looper.java:136) 
    at com.facebook.react.bridge.queue.MessageQueueThreadImpl$3.run(MessageQueueThreadImpl.java:194) 
    at java.lang.Thread.run(Thread.java:841) 


    My package.json



    "dependencies": {
    "async": "^2.5.0",
    "bugsnag-react-native": "^2.2.0",
    "he": "^1.1.1",
    "moment": "^2.18.1",
    "oauth-1.0a": "^2.1.0",
    "prop-types": "^15.5.10",
    "react": "16.0.0-alpha.12",
    "react-native": "0.48.3",
    "react-native-camera": "^0.13.0",
    "react-native-datepicker": "^1.4.7",
    "react-native-device-info": "^0.11.0",
    "react-native-drawer": "^2.3.0",
    "react-native-dropdown-menu": "^2.0.0",
    "react-native-fast-image": "^1.0.0",
    "react-native-fbsdk": "^0.6.1",
    "react-native-firebase": "1.1.2",
    "react-native-image-progress": "^1.0.1",
    "react-native-keyboard-aware-scroll-view": "^0.2.7",
    "react-native-modal-dropdown": "^0.4.2",
    "react-native-navbar": "^1.5.0",
    "react-native-onesignal": "^3.0.6",
    "react-native-progress": "^3.4.0",
    "react-native-push-notification": "^2.2.1",
    "react-native-root-toast": "^1.0.3",
    "react-native-router-flux": "^3.37.0",
    "react-native-scrollable-tab-view": "^0.8.0",
    "react-native-swiper": "^1.5.12",
    "react-native-vector-icons": "^4.0.0",
    "react-native-webview-android": "^1.1.17",
    "react-navigation": "^1.0.0-beta.11",
    "react-redux": "^5.0.3",
    "redux": "^3.7.2",
    "redux-logger": "^2.6.1",
    "redux-persist": "^4.9.1",
    "redux-thunk": "^2.1.0"


    },



    Please help me.
    Thank you so much!










    share|improve this question

























      2












      2








      2


      1






      I am programming react native app on Android. Since my app has some third party library, so I must be enable multidex with over 65536 methods on Android.



      My android/app/build.gradle



      android {
      defaultConfig {
      minSdkVersion 16
      targetSdkVersion 25
      multiDexEnabled true
      }}

      dependencies {
      compile 'com.android.support:multidex:1.0.3'
      }


      And I build app successfully. But in my app, I install react-native-fbsdk for login with facebook. There is an error when I have just press login with facebook button:



      11-13 20:20:13.707 15581-15640/com.fahasa.android.fahasa E/unknown:ReactNative: Exception in native call
      java.lang.RuntimeException: Could not invoke FBGraphRequest.start
      at com.facebook.react.bridge.JavaMethodWrapper.invoke(JavaMethodWrapper.java:374)
      at com.facebook.react.bridge.JavaModuleWrapper.invoke(JavaModuleWrapper.java:162)
      at com.facebook.react.bridge.queue.NativeRunnable.run(Native Method)
      at android.os.Handler.handleCallback(Handler.java:733)
      at android.os.Handler.dispatchMessage(Handler.java:95)
      at com.facebook.react.bridge.queue.MessageQueueThreadHandler.dispatchMessage(MessageQueueThreadHandler.java:31)
      at android.os.Looper.loop(Looper.java:136)
      at com.facebook.react.bridge.queue.MessageQueueThreadImpl$3.run(MessageQueueThreadImpl.java:194)
      at java.lang.Thread.run(Thread.java:841)
      Caused by: java.lang.reflect.InvocationTargetException
      at java.lang.reflect.Method.invokeNative(Native Method)
      at java.lang.reflect.Method.invoke(Method.java:515)
      at com.facebook.react.bridge.JavaMethodWrapper.invoke(JavaMethodWrapper.java:363)
      at com.facebook.react.bridge.JavaModuleWrapper.invoke(JavaModuleWrapper.java:162) 
      at com.facebook.react.bridge.queue.NativeRunnable.run(Native Method) 
      at android.os.Handler.handleCallback(Handler.java:733) 
      at android.os.Handler.dispatchMessage(Handler.java:95) 
      at com.facebook.react.bridge.queue.MessageQueueThreadHandler.dispatchMessage(MessageQueueThreadHandler.java:31) 
      at android.os.Looper.loop(Looper.java:136) 
      at com.facebook.react.bridge.queue.MessageQueueThreadImpl$3.run(MessageQueueThreadImpl.java:194) 
      at java.lang.Thread.run(Thread.java:841) 
      Caused by: java.lang.NoSuchMethodError: com.facebook.AccessToken.<init>
      at com.facebook.reactnative.androidsdk.FBGraphRequestModule.setConfig(FBGraphRequestModule.java:158)
      at com.facebook.reactnative.androidsdk.FBGraphRequestModule.buildRequest(FBGraphRequestModule.java:136)
      at com.facebook.reactnative.androidsdk.FBGraphRequestModule.start(FBGraphRequestModule.java:123)
      at java.lang.reflect.Method.invokeNative(Native Method) 
      at java.lang.reflect.Method.invoke(Method.java:515) 
      at com.facebook.react.bridge.JavaMethodWrapper.invoke(JavaMethodWrapper.java:363) 
      at com.facebook.react.bridge.JavaModuleWrapper.invoke(JavaModuleWrapper.java:162) 
      at com.facebook.react.bridge.queue.NativeRunnable.run(Native Method) 
      at android.os.Handler.handleCallback(Handler.java:733) 
      at android.os.Handler.dispatchMessage(Handler.java:95) 
      at com.facebook.react.bridge.queue.MessageQueueThreadHandler.dispatchMessage(MessageQueueThreadHandler.java:31) 
      at android.os.Looper.loop(Looper.java:136) 
      at com.facebook.react.bridge.queue.MessageQueueThreadImpl$3.run(MessageQueueThreadImpl.java:194) 
      at java.lang.Thread.run(Thread.java:841) 


      My package.json



      "dependencies": {
      "async": "^2.5.0",
      "bugsnag-react-native": "^2.2.0",
      "he": "^1.1.1",
      "moment": "^2.18.1",
      "oauth-1.0a": "^2.1.0",
      "prop-types": "^15.5.10",
      "react": "16.0.0-alpha.12",
      "react-native": "0.48.3",
      "react-native-camera": "^0.13.0",
      "react-native-datepicker": "^1.4.7",
      "react-native-device-info": "^0.11.0",
      "react-native-drawer": "^2.3.0",
      "react-native-dropdown-menu": "^2.0.0",
      "react-native-fast-image": "^1.0.0",
      "react-native-fbsdk": "^0.6.1",
      "react-native-firebase": "1.1.2",
      "react-native-image-progress": "^1.0.1",
      "react-native-keyboard-aware-scroll-view": "^0.2.7",
      "react-native-modal-dropdown": "^0.4.2",
      "react-native-navbar": "^1.5.0",
      "react-native-onesignal": "^3.0.6",
      "react-native-progress": "^3.4.0",
      "react-native-push-notification": "^2.2.1",
      "react-native-root-toast": "^1.0.3",
      "react-native-router-flux": "^3.37.0",
      "react-native-scrollable-tab-view": "^0.8.0",
      "react-native-swiper": "^1.5.12",
      "react-native-vector-icons": "^4.0.0",
      "react-native-webview-android": "^1.1.17",
      "react-navigation": "^1.0.0-beta.11",
      "react-redux": "^5.0.3",
      "redux": "^3.7.2",
      "redux-logger": "^2.6.1",
      "redux-persist": "^4.9.1",
      "redux-thunk": "^2.1.0"


      },



      Please help me.
      Thank you so much!










      share|improve this question














      I am programming react native app on Android. Since my app has some third party library, so I must be enable multidex with over 65536 methods on Android.



      My android/app/build.gradle



      android {
      defaultConfig {
      minSdkVersion 16
      targetSdkVersion 25
      multiDexEnabled true
      }}

      dependencies {
      compile 'com.android.support:multidex:1.0.3'
      }


      And I build app successfully. But in my app, I install react-native-fbsdk for login with facebook. There is an error when I have just press login with facebook button:



      11-13 20:20:13.707 15581-15640/com.fahasa.android.fahasa E/unknown:ReactNative: Exception in native call
      java.lang.RuntimeException: Could not invoke FBGraphRequest.start
      at com.facebook.react.bridge.JavaMethodWrapper.invoke(JavaMethodWrapper.java:374)
      at com.facebook.react.bridge.JavaModuleWrapper.invoke(JavaModuleWrapper.java:162)
      at com.facebook.react.bridge.queue.NativeRunnable.run(Native Method)
      at android.os.Handler.handleCallback(Handler.java:733)
      at android.os.Handler.dispatchMessage(Handler.java:95)
      at com.facebook.react.bridge.queue.MessageQueueThreadHandler.dispatchMessage(MessageQueueThreadHandler.java:31)
      at android.os.Looper.loop(Looper.java:136)
      at com.facebook.react.bridge.queue.MessageQueueThreadImpl$3.run(MessageQueueThreadImpl.java:194)
      at java.lang.Thread.run(Thread.java:841)
      Caused by: java.lang.reflect.InvocationTargetException
      at java.lang.reflect.Method.invokeNative(Native Method)
      at java.lang.reflect.Method.invoke(Method.java:515)
      at com.facebook.react.bridge.JavaMethodWrapper.invoke(JavaMethodWrapper.java:363)
      at com.facebook.react.bridge.JavaModuleWrapper.invoke(JavaModuleWrapper.java:162) 
      at com.facebook.react.bridge.queue.NativeRunnable.run(Native Method) 
      at android.os.Handler.handleCallback(Handler.java:733) 
      at android.os.Handler.dispatchMessage(Handler.java:95) 
      at com.facebook.react.bridge.queue.MessageQueueThreadHandler.dispatchMessage(MessageQueueThreadHandler.java:31) 
      at android.os.Looper.loop(Looper.java:136) 
      at com.facebook.react.bridge.queue.MessageQueueThreadImpl$3.run(MessageQueueThreadImpl.java:194) 
      at java.lang.Thread.run(Thread.java:841) 
      Caused by: java.lang.NoSuchMethodError: com.facebook.AccessToken.<init>
      at com.facebook.reactnative.androidsdk.FBGraphRequestModule.setConfig(FBGraphRequestModule.java:158)
      at com.facebook.reactnative.androidsdk.FBGraphRequestModule.buildRequest(FBGraphRequestModule.java:136)
      at com.facebook.reactnative.androidsdk.FBGraphRequestModule.start(FBGraphRequestModule.java:123)
      at java.lang.reflect.Method.invokeNative(Native Method) 
      at java.lang.reflect.Method.invoke(Method.java:515) 
      at com.facebook.react.bridge.JavaMethodWrapper.invoke(JavaMethodWrapper.java:363) 
      at com.facebook.react.bridge.JavaModuleWrapper.invoke(JavaModuleWrapper.java:162) 
      at com.facebook.react.bridge.queue.NativeRunnable.run(Native Method) 
      at android.os.Handler.handleCallback(Handler.java:733) 
      at android.os.Handler.dispatchMessage(Handler.java:95) 
      at com.facebook.react.bridge.queue.MessageQueueThreadHandler.dispatchMessage(MessageQueueThreadHandler.java:31) 
      at android.os.Looper.loop(Looper.java:136) 
      at com.facebook.react.bridge.queue.MessageQueueThreadImpl$3.run(MessageQueueThreadImpl.java:194) 
      at java.lang.Thread.run(Thread.java:841) 


      My package.json



      "dependencies": {
      "async": "^2.5.0",
      "bugsnag-react-native": "^2.2.0",
      "he": "^1.1.1",
      "moment": "^2.18.1",
      "oauth-1.0a": "^2.1.0",
      "prop-types": "^15.5.10",
      "react": "16.0.0-alpha.12",
      "react-native": "0.48.3",
      "react-native-camera": "^0.13.0",
      "react-native-datepicker": "^1.4.7",
      "react-native-device-info": "^0.11.0",
      "react-native-drawer": "^2.3.0",
      "react-native-dropdown-menu": "^2.0.0",
      "react-native-fast-image": "^1.0.0",
      "react-native-fbsdk": "^0.6.1",
      "react-native-firebase": "1.1.2",
      "react-native-image-progress": "^1.0.1",
      "react-native-keyboard-aware-scroll-view": "^0.2.7",
      "react-native-modal-dropdown": "^0.4.2",
      "react-native-navbar": "^1.5.0",
      "react-native-onesignal": "^3.0.6",
      "react-native-progress": "^3.4.0",
      "react-native-push-notification": "^2.2.1",
      "react-native-root-toast": "^1.0.3",
      "react-native-router-flux": "^3.37.0",
      "react-native-scrollable-tab-view": "^0.8.0",
      "react-native-swiper": "^1.5.12",
      "react-native-vector-icons": "^4.0.0",
      "react-native-webview-android": "^1.1.17",
      "react-navigation": "^1.0.0-beta.11",
      "react-redux": "^5.0.3",
      "redux": "^3.7.2",
      "redux-logger": "^2.6.1",
      "redux-persist": "^4.9.1",
      "redux-thunk": "^2.1.0"


      },



      Please help me.
      Thank you so much!







      android react-native multidex android-multidex react-native-fbsdk






      share|improve this question













      share|improve this question











      share|improve this question




      share|improve this question










      asked Nov 13 '18 at 13:37









      vannguyenvannguyen

      76110




      76110
























          1 Answer
          1






          active

          oldest

          votes


















          0














          Do
          npm install
          Build and re run android app either from android studio or
          npm run android






          share|improve this answer























            Your Answer






            StackExchange.ifUsing("editor", function () {
            StackExchange.using("externalEditor", function () {
            StackExchange.using("snippets", function () {
            StackExchange.snippets.init();
            });
            });
            }, "code-snippets");

            StackExchange.ready(function() {
            var channelOptions = {
            tags: "".split(" "),
            id: "1"
            };
            initTagRenderer("".split(" "), "".split(" "), channelOptions);

            StackExchange.using("externalEditor", function() {
            // Have to fire editor after snippets, if snippets enabled
            if (StackExchange.settings.snippets.snippetsEnabled) {
            StackExchange.using("snippets", function() {
            createEditor();
            });
            }
            else {
            createEditor();
            }
            });

            function createEditor() {
            StackExchange.prepareEditor({
            heartbeatType: 'answer',
            autoActivateHeartbeat: false,
            convertImagesToLinks: true,
            noModals: true,
            showLowRepImageUploadWarning: true,
            reputationToPostImages: 10,
            bindNavPrevention: true,
            postfix: "",
            imageUploader: {
            brandingHtml: "Powered by u003ca class="icon-imgur-white" href="https://imgur.com/"u003eu003c/au003e",
            contentPolicyHtml: "User contributions licensed under u003ca href="https://creativecommons.org/licenses/by-sa/3.0/"u003ecc by-sa 3.0 with attribution requiredu003c/au003e u003ca href="https://stackoverflow.com/legal/content-policy"u003e(content policy)u003c/au003e",
            allowUrls: true
            },
            onDemand: true,
            discardSelector: ".discard-answer"
            ,immediatelyShowMarkdownHelp:true
            });


            }
            });














            draft saved

            draft discarded


















            StackExchange.ready(
            function () {
            StackExchange.openid.initPostLogin('.new-post-login', 'https%3a%2f%2fstackoverflow.com%2fquestions%2f53282246%2freact-native-fbsdk-could-not-invoke-fbgraphrequest-start-when-enable-multidex-r%23new-answer', 'question_page');
            }
            );

            Post as a guest















            Required, but never shown

























            1 Answer
            1






            active

            oldest

            votes








            1 Answer
            1






            active

            oldest

            votes









            active

            oldest

            votes






            active

            oldest

            votes









            0














            Do
            npm install
            Build and re run android app either from android studio or
            npm run android






            share|improve this answer




























              0














              Do
              npm install
              Build and re run android app either from android studio or
              npm run android






              share|improve this answer


























                0












                0








                0







                Do
                npm install
                Build and re run android app either from android studio or
                npm run android






                share|improve this answer













                Do
                npm install
                Build and re run android app either from android studio or
                npm run android







                share|improve this answer












                share|improve this answer



                share|improve this answer










                answered Nov 13 '18 at 13:50









                Anurag ChutaniAnurag Chutani

                1366




                1366






























                    draft saved

                    draft discarded




















































                    Thanks for contributing an answer to Stack Overflow!


                    • Please be sure to answer the question. Provide details and share your research!

                    But avoid



                    • Asking for help, clarification, or responding to other answers.

                    • Making statements based on opinion; back them up with references or personal experience.


                    To learn more, see our tips on writing great answers.




                    draft saved


                    draft discarded














                    StackExchange.ready(
                    function () {
                    StackExchange.openid.initPostLogin('.new-post-login', 'https%3a%2f%2fstackoverflow.com%2fquestions%2f53282246%2freact-native-fbsdk-could-not-invoke-fbgraphrequest-start-when-enable-multidex-r%23new-answer', 'question_page');
                    }
                    );

                    Post as a guest















                    Required, but never shown





















































                    Required, but never shown














                    Required, but never shown












                    Required, but never shown







                    Required, but never shown

































                    Required, but never shown














                    Required, but never shown












                    Required, but never shown







                    Required, but never shown







                    Popular posts from this blog

                    List item for chat from Array inside array React Native

                    Thiostrepton

                    Caerphilly