error "Could not get BatchedBridge, make sure your bundle is packaged properly" on start of app

AndroidReact Native

Android Problem Overview


Trying to create a react-native project on Android 4.4.2 I get this error screen

said error

and couldn't find any way to resolve it. I tried restarting packager, reconnecting device, even reinstalling react native and starting new project. On 6.0.0 and later versions it works just fine.

Android Solutions


Solution 1 - Android

A possible solution for this is that you most probably not bundling your application first, perform the following steps and then deploy your app-debug.apk to your device

$ cd myproject  
$ react-native start > /dev/null 2>&1 &  
$ curl "http://localhost:8081/index.android.bundle?platform=android" -o "android/app/src/main/assets/index.android.bundle"

(if the folder assets does not exists create it)

Then run from project root

$> (cd android/ && ./gradlew assembleDebug)

install the created apk to you device, from location: android/app/build/outputs/apk/app-debug.apk

let me know if that fixes your issue

EDIT:

You can simply put it to your package.json as a script to automate it, I believe it will be fixed in upcoming releases of react-native and will be executed prior assembling the final APK, hence this won't be needed (I hope as well)

put :

"scripts": {
    "build": "(cd android/ && ./gradlew assembleDebug)",
    "start": "node node_modules/react-native/local-cli/cli.js start",
    "bundle-android": "react-native bundle --platform android --dev false --entry-file index.android.js --bundle-output android/app/src/main/assets/index.android.bundle --sourcemap-output android/app/src/main/assets/index.android.map --assets-dest android/app/src/main/res/"
  },

or as mentioned the curl equivalent, but for most cases the above is more robust

Solution 2 - Android

I came across this issue as well. What I did was force kill the app on my device, then I opened up another console and ran

react-native start

and then I opened the app again from my device and it started working again.

EDIT: If you are using an android device via USB and have unplugged it or your computer went to sleep, you may have to first run

adb reverse tcp:8081 tcp:8081

Solution 3 - Android

Just got this error. Here's what I did to fix: I selected Dismiss, Went into the Developer menu, then Dev Settings, Choose Debug server host & port for device, I added my computers IP address and the port: 192.168.0.xx:8xxx, use whatever your developer machines assigned IP address is on your wifi network. The port is usually :8081

Once I did this, all went well. Also, while you're in the dev menu remember to select Enable Live Reload and Debug JS Remotely, it makes your life much-much easier while debugging.

Solution 4 - Android

This is what worked for me (After trying every other solution i found ...):

Run adb reverse tcp:8081 tcp:8081 inside \Android\sdk\platform-tools

Solution 5 - Android

I got this also when I started for the first time with React Native, using a physical device. If that's the case, you need to do some extra things before you can get started. You have to enter some information about your development machine in the 'Dev Settings' of React Native.

When you see the error, shake your device. A dialog will popup, the last option will be 'Dev Settings'. Select 'Debug server hot & port for device' and enter your local IP and the used port (usually 8081).

See the last paragraph of https://facebook.github.io/react-native/docs/running-on-device-android.html

Solution 6 - Android

If none of the solution work for you try this:

I found that my <root>/android/app/build/intermediates/assets/debug folder was empty and by running cd android && ./gradlew assembleDebug was not creating those files required, which are later used by javascript thread in our react native apps.

I ran manually the following command which the debug build command should have created ideally.

node node_modules/react-native/local-cli/cli.js bundle --platform android --dev true --reset-cache --entry-file index.android.js --bundle-output /<path to dir>/android/app/build/intermediates/assets/debug/index.android.bundle --assets-dest /<path to dir>/android/app/build/intermediates/res/merged/debug

After running these commands I found two bundle files in this directory <root>/android/app/build/intermediates/assets/debug

And then a I ran again cd android && ./gradlew installDebug my app started working again.

Will debug more and would update what is failing actually.

Solution 7 - Android

In a separate terminal, connect your device to the computer and run the following commands:

react-native start 
cd user/Library/Android/sdk/platform-tools/
./adb reverse tcp:8081 tcp:8081

Application terminal:

react-native run-android 
install apk on your device from this location android/app/build/outputs/apk/app-debug.apk

Solution 8 - Android

see issue:

1.react-native start

2.click Reload(R,R) on your device.

Solution 9 - Android

It's little too late but this really works for me.

  1. react-native run-android.
  2. react-native start.

First command will build apk for android and deploy it on your device if its connected. When you open the App it will show red screen with error. Then run second command which will run packager and build app bundle for you.

Solution 10 - Android

Try this command in terminal and then reload. It worked for me

adb reverse tcp:8081 tcp:8081

Solution 11 - Android

  1. restart the genymotion
  2. run react-native run-android
  3. the problem was solved

Solution 12 - Android

I was having the same exception on the device Z3 Compact D5803 - 6.0.1

I went opened the .buckconfig file and changed the line:

target = Google Inc.:Google APIs:23

to

target = Google Inc.:Google APIs:24

Because i saw in SDK Manager that Android 6.X has api level 24.

Solution 13 - Android

For me, it's because adb was not in the PATH. It's located /Users/man/Library/Android/sdk/platform-tools for me, it may be somewhere else for you, but anyway, find it and add it to your path to see if that help.

Solution 14 - Android

Since you are using Android < 5.0 you can't use the default adb reverse method, but Facebook has added official documentation to connect to the development server via Wi-Fi, which would support your version. Quoting the instructions for MacOS, but they also have them for Linux and Windows:

> Method 2: Connect via Wi-Fi > >You can also connect to the development server over Wi-Fi. You'll first need to install the app on your device using a USB cable, but once that has been done you can debug wirelessly by following these instructions. You'll need your development machine's current IP address before proceeding. > >You can find the IP address in System Preferences → Network. > >Make sure your laptop and your phone are on the same Wi-Fi network. Open your React Native app on your device. You'll see a red screen with an error. This is OK. The following steps will fix that. Open the in-app Developer menu. Go to Dev Settings → Debug server host for device. Type in your machine's IP address and the port of the local dev server (e.g. 10.0.1.1:8081). Go back to the Developer menu and select Reload JS.

Solution 15 - Android

It had this issue "randomly" and took me sometime to realize what was wrong in my scenario.

After I have updated to React-native-cli 2.0.1, there was a message output to the log which helped me to dig and find the root cause:

> JS server not recognized, continuing with build...

After researching some links I found this one:

https://stackoverflow.com/questions/32604522/unable-to-recognize-js-server

Since I´m on windows, I ran netstat and found out that my VLC player was also running on port 8081 causing the issue. So, in my case, if I started the vlc server prior to the react-native server it wouldn´t work.

This same log message wasn´t output on previous versions of the react-native-cli, making it fail silently.

TL, DR: check if there´s anything running on the same port as the package manager (8081 by default)

Solution 16 - Android

My way are:

react-native start

After that in your device using:

click to Reload.

See in console react-native, it will be fetch js bundle data.

Solution 17 - Android

My issue was that I went through my AndroidManifest.xml file and had removed the line

because my app will not need internet. However, the react native debugging app does need internet access (to access the packager) Whoops. :)

Solution 18 - Android

Try to clean cache

> react-native start --reset-cache

Solution 19 - Android

Please check if you have following error when you run react-native run-android:

adb server version (XX) doesn't match this client (XX); killing...

In that case make sure /usr/local/opt/android-sdk/platform-tools/adb and /usr/local/bin/adb are pointed to the same adb

In my case one was pointed to /Users/sd/Library/Android/sdk/platform-tools/adb (Android SDK), but another was pointed to /usr/local/Caskroom/android-platform-tools/26.0.2/platform-tools/adb (Homebrew)

And issue have been fixed after both of them pointed to /Users/sd/Library/Android/sdk/platform-tools/adb (Android SDK)

Solution 20 - Android

I got this error too, really confused. cuz all answers does not work. Just after add adb to path.

Solution 21 - Android

For me, I had side-sync enabled and active. Closing it imediately made the issue go away. It might be worth closing this or any other communication between PC and device

Solution 22 - Android

I ended up having to open up the port that I was using (8081 by default). On Linux, you can do the following

sudo iptables -A INPUT -p tcp --dport 8081 -m conntrack --ctstate NEW,ESTABLISHED -j ACCEPT
sudo iptables -A OUTPUT -p tcp --sport 8081 -m conntrack --ctstate ESTABLISHED -j ACCEPT

You can test to see whether you actually need to do this. Just navigate to your dev server in Chrome on your Android device. If it doesn't respond, then this might be what you need. If it does respond, then this won't help you.

Solution 23 - Android

Most of us face this problem for the first time, when we start react native project#1.

Few simple steps solved my problem:

I created a sample project using command:

react-native init ReactProject1

Solution

The fix is to help local-cli\runAndroid\adb.js to find adb.exe, the same way as local-cli\runAndroid\runAndroid.js:

find replace statement under projectname(whatever you have given)\node_modules\react-native\local-cli\runAndroid

Replace:

const devicesResult = child_process.execSync('adb devices');

By:

const devicesResult = child_process.execSync( (process.env.ANDROID_HOME ? process.env.ANDROID_HOME + '/platform-tools/' : '') + 'adb devices');

after doing above replacement, just run react-native run-android in your cmd, it will bundle apk and at first try to install js bundle locally in your device. (Got Success)

Solution 24 - Android

I had the same problem. When I did create a react native project via create-react-native-app AwesomeProject it worked well in Expo app on phone. After that I wanted to use that quickstart project for developing my project and got same error as you do.

After some research I find out it's better to start new project with react-native init AwesomeProject (with all setting in react native docs) Then run this command:

react-native bundle --platform android --dev false --entry-file index.android.js --bundle-output android/app/src/main/assets/index.android.bundle --assets-dest android/app/src/main/res/

That should fix the thing with bundle (--dev false is not showing warnings)

All you need to do for app to run on your virtual / real device is:

react-native run-android

And it should be working just fine. At least it worked for me.

Solution 25 - Android

For me the problem was that 'adb' was not recognised - check this answer.

To fix this add C:\Users\USERNAME\AppData\Local\Android\sdk\platform-tools to Environment Variables

Solution 26 - Android

someone suggested the following one

react-native run-android react-native start --reset-cache,

But in my case, I just close the cli command prompt window and used the following.

npx react-native run-android

and it worked fine.

Solution 27 - Android

I tried many of the suggestions above/below, but ultimately, the issue I faced was a permissions one with watchman, which was installed using homebrew earlier. If you look at your terminal messages while trying to use the emulator, and encounter 'Permission denied' errors with regards to watchman along with this 'Could not get BatchedBridge" message on your emulator, do the following:

Go to your /Users/<username>/Library/LaunchAgents directory and change the permissions settings so your user can Read and Write. This is regardless of whether or not you actually have a com.github.facebook.watchman.plist file in there.

Solution 28 - Android

I found that I needed to also add in a

> react-native upgrade

to get the application to run correctly.

Solution 29 - Android

I got the same issue but it was a stupid mistake from myself...

From Android studio, I was launching installDebug/installRelease gradle script from app projet instead of root projet.

Solution 30 - Android

Easiest Way!

  • Stop server and end project build.
  • Open a 'Node.js' terminal.
    • Navigate to folder with 'react-native' project.
    • Type 'react-native start' --Starting the react native server manually.
  • Go to your Code Editor Terminal and type 'react-native run-android.

You're good to go!

Solution 31 - Android

"npm start"

I just closed the terminal and open a new one. Went to project location by cd command. And then just simply type - "npm start". and then 'r' for reload. Everything just vanished. I think everybody should try this at once.

Solution 32 - Android

In my case, it was jsEngine: 'hermes' under the android subsection, removing it fixed the production build.

Solution 33 - Android

If you are using expo and you are running it on a physical device, I would advise to kill the metro bundler then expo start and try it

Attributions

All content for this solution is sourced from the original question on Stackoverflow.

The content on this page is licensed under the Attribution-ShareAlike 4.0 International (CC BY-SA 4.0) license.

Content TypeOriginal AuthorOriginal Content on Stackoverflow
QuestionZygroView Question on Stackoverflow
Solution 1 - AndroidtboView Answer on Stackoverflow
Solution 2 - AndroidFelipeView Answer on Stackoverflow
Solution 3 - AndroidcubeView Answer on Stackoverflow
Solution 4 - AndroidChaim SalzerView Answer on Stackoverflow
Solution 5 - AndroidRichh94View Answer on Stackoverflow
Solution 6 - AndroidSumit KushwahaView Answer on Stackoverflow
Solution 7 - AndroidBrijmohan KaradiaView Answer on Stackoverflow
Solution 8 - AndroidXYz AmosView Answer on Stackoverflow
Solution 9 - AndroidShamsherView Answer on Stackoverflow
Solution 10 - AndroidPraneethView Answer on Stackoverflow
Solution 11 - AndroidMike YangView Answer on Stackoverflow
Solution 12 - Androidlaszl0View Answer on Stackoverflow
Solution 13 - Androidh--nView Answer on Stackoverflow
Solution 14 - AndroidJesús CarreraView Answer on Stackoverflow
Solution 15 - AndroidLuiz Henrique Martins Lins RolView Answer on Stackoverflow
Solution 16 - AndroidThienSuBSView Answer on Stackoverflow
Solution 17 - AndroidSpencerLView Answer on Stackoverflow
Solution 18 - AndroidHitesh SahuView Answer on Stackoverflow
Solution 19 - AndroidSerhey DolgushevView Answer on Stackoverflow
Solution 20 - AndroidBruce LeeView Answer on Stackoverflow
Solution 21 - Androidlee_dabikerView Answer on Stackoverflow
Solution 22 - AndroidAnthony NaddeoView Answer on Stackoverflow
Solution 23 - AndroidDeepakPanwarView Answer on Stackoverflow
Solution 24 - AndroidSebastian VoráčView Answer on Stackoverflow
Solution 25 - AndroidnicemanView Answer on Stackoverflow
Solution 26 - AndroidIrshad BabarView Answer on Stackoverflow
Solution 27 - AndroidalexfigtreeView Answer on Stackoverflow
Solution 28 - AndroidM. SolleView Answer on Stackoverflow
Solution 29 - AndroidMartin ChoraineView Answer on Stackoverflow
Solution 30 - AndroidJasonView Answer on Stackoverflow
Solution 31 - AndroidTripleMView Answer on Stackoverflow
Solution 32 - AndroidOneOfOneView Answer on Stackoverflow
Solution 33 - AndroidQuayson DavidView Answer on Stackoverflow