React native: Android project not found. Maybe run react-native android first? - react-native
I had an issue in my React-Native project which was working fine earlier but suddenly it stopped working. Whenever I used the command:
react-native run-android
I was getting an error:
Android project not found. Maybe run react-native android first?
I tried running:
react-native android
But it said:
Unrecognized command 'android' Run react-native --help to see list of
all available commands
After trying:
D:\ProjectRoot\ReactNativeProjects\AwesomeProject>react-native eject
The error returned was:
Scanning folders for symlinks in
D:\ProjectRoot\ReactNativeProjects\AwesomeProject\node_modules (48ms)
App name must be defined in the app.json config file to define the
project name. It must not contain any spaces or dashes.
This is the app.json file:
{
"expo": {
"name": "AwesomeProject",
"description": "A very interesting project.",
"slug": "AwesomeProject",
"privacy": "public",
"sdkVersion": "30.0.0",
"platforms": ["ios", "android"],
"ios": {
"supportsTablet": true
},
"android": {
"package": "com.project.first"
},
"version": "1.0.0",
"orientation": "portrait",
"icon": "./assets/images/icon.png",
"splash": {
"image": "./assets/images/splash.png",
"resizeMode": "contain",
"backgroundColor": "#ffffff"
},
"updates": {
"fallbackToCacheTimeout": 0
},
"assetBundlePatterns": [
"**/*"
]
}
}
I raised this question and answered myself as I thought it will help others who are facing similar issue. I struggled a lot to find out the real reason behind it as the error shown in terminal was not precise.
To resolve the issue please upgrade the react-native package.
Go to the Project root.
Upgrade the React native package in the Command Prompt by typing :
react-native upgrade.
Then Accept to update all the Files by typing y (Yes) in the Command Prompt.
Reference: https://github.com/facebook/react-native/issues/9312
Open your React Native Project Root Directory and locate android -> app -> build -> intermediates -> signing_config -> debug -> out -> signing-config.json .
delete signing-config.json this file
try again
Or
1)Sometimes if we have older version of react native and some of newly installed packages dose not support older version. Then you have to update the react native project using react-native upgrade command.
After done updating current project to new version this error should resolved.
I know it is an old question but any of those solutions did not work for me and maybe there are others like me. I solved my problem running this command before run-android
react-native eject
Make sure to start the project using command (non-expo):
react-native init <your-project-name>
If existing folder, then follow:
react-native eject
In the latest version of react-native this suggestion comes when you try to issue the command:
react-native eject
Scanning folders for symlinks in
D:\ProjectRoot\ReactNativeProjects\AwesomeProject\node_modules (48ms)
App name must be defined in the app.json config file to define the
project name. It must not contain any spaces or dashes.
Now when you issue the following command:
D:\ProjectRoot\ReactNativeProjects\AwesomeProject>react-native upgrade
The following shows up:
Scanning folders for symlinks in
D:\ProjectRoot\ReactNativeProjects\AwesomeProject\node_modules (56ms)
You should consider using the new upgrade tool based on Git. It makes
upgrades easier by resolving most conflicts automatically. To use it:
- Go back to the old version of React Native
- Run "npm install -g react-native-git-upgrade"
- Run "react-native-git-upgrade" See https://facebook.github.io/react-native/docs/upgrading.html
react-native version in "package.json" doesn't match the installed
version in "node_modules". Try running "npm install" to fix this.
Aborting.
In the Facebook react-native commands suggestions, there is a clear solution.
These commands check the current version and whether there is update needed or not.
One more solution:
react-native: Command run-android unrecognized. Maybe caused by npm install
Please also see:
Solution to "Expo : cannot find a module LogReporter"
Open Command Prompt as Administrator and goto the project folder, run android(npx react-native run-android)
I did like this... Worked !!
In the CMD Project root run react-native upgrade.
if you are still getting issues, make sure you have react-native
in dependencies json in package.json, add it if not
if you are still getting issues, get the version of react native in cmd using react-native -v and check if the value returned in cmd and package.json are same. update the package.json with the value returned in cmd
Here my problem solved.
I had to restyle my AndroidManifest.xml because I had a syntax error somewhere (I had an extra "/" somewhere). Now it's fixed. Be very careful with your syntax...
Remove the file: React Native Project Root Directory and locate android -> app -> build -> intermediates -> signing_config -> debug -> out -> signing-config.json .
Running Terminal as Administrator in Windows did the trick for me... Other solutions did not work.
Open your React Native Project Root Directory and locate android -> app -> build -> intermediates -> signing_config -> debug -> out -> signing-config.json
Delete the file and try again.
I faced this problem today, and none of the solutions worked for me, so I found another one.
Badly Formatted AndroidManifest.xml will cause this problem, perhaps you set the splash screen like me today, and didn't formatted AndroidManifest in the correct way
We had this issue because files from android folder gradlew and gradlew.bat (Gradle startup script for the UN*X, Windows respectively) somehow got into the global .gitignore file, and so were not presented on local environments.
Actually running react-native upgrade command restore those files, thus fixing the problem.
As a complement, in the case react-native command is not found, you should install react-native CLI:
npm install -g react-native-cli
Then you can follow the steps people said above.
More details: react-native: command not found
Delete signing-config.json next try again react-native run-android
signing-config.json file Path : android -> app -> build -> intermediates -> signing_config -> debug -> out -> signing-config.json
If you started your project by following
npm install -g create-react-native-app
create-react-native-app MyReactNative
npm install -g react-native-cli
npm start
after this, you can face problem mention above in question So the solution is :
npm run eject
I'm using Android Studio (non-expo) and this works for me
react-native init <your-project-name>
I think one more simple thing you could have checked, is if previously you ran the project as different role of a user, like in windows if you ran previously the react-native run-android with an administrator role.
This error simply means you don't have 'android' and 'ios' folders in your root directory of the project. Their location is important.
SOLUTION:-
Open your project folder search for 'android' and iso 'folder', move these folders in your root folder of the project and then start the project with react-native run-android
For me, "rm -rf android/app/build/" worked
Run your command with "--verbose". I got the error that it couldn't read a file (in android/app/build/generated/not_namespaced_r_class_sources/). I deleted this folder, and it worked
My working solution is below, none of the above worked for me:
CD into your project folder and type expo start --android.
Or the long way:
Open AVD manager in Android Studio and run a virtual device (you can
close AS afterwards)
CMD into your project folder and type 'expo start'
Once Expo has started choose option 2 which is "Press a for Android
emulator"
It will install expo on the virtual device and you can test from there
Here, app.json does not have name, but it has expo related config.
So just add name and display name fields in app.json.
app.json (first two lines) :
{
"name": "AwesomeProject",
"displayName": "Awesome Project",
"expo": {
"name": "AwesomeProject",
"description": "A very interesting project.",
"slug": "AwesomeProject",
"privacy": "public",
"sdkVersion": "30.0.0",
"platforms": ["ios", "android"],
"ios": {
"supportsTablet": true
},
"android": {
"package": "com.project.first"
},
"version": "1.0.0",
"orientation": "portrait",
"icon": "./assets/images/icon.png",
"splash": {
"image": "./assets/images/splash.png",
"resizeMode": "contain",
"backgroundColor": "#ffffff"
},
"updates": {
"fallbackToCacheTimeout": 0
},
"assetBundlePatterns": [
"**/*"
]
}
}
After this, just run :
$ react-native eject
info Generating the iOS folder.
info Generating the Android folder.
No need to do react-native upgrade.
You have to run your cmd with admin priviliges. That solved the same issue for me.
Didnt do "eject" or anything else.
In my case, I've forgotten to add Sudo. Fixed as follows,
sudo npx react-native run-android
Delete react native android build folder and then retry command npx react-native run-android
In my case i didn't had the right permissions for my project folder.
If this is your case just click with the right button on the folder > Properties > Security > Advanced and then change the ownership of the folder to your user, including the subfolders. That should do it
So if there is anyone having this issue here what worked for me,
{
"name": "ZedMusic",
"displayName": "zedmusic",
"expo": {}
}
the project name must be outside expo, then run npx react-native eject
When I ran react-native eject, I got this error:
Both the iOS and Android folders already exist! Please delete `ios` and/or `android` before ejecting.
Delete the MyProject/android folder.
Run react-native eject This generated the android folder
Then run react-native run-android to build android
You should consider using the new upgrade tool based on Git. It makes upgrades easier by resolving most conflicts automatically.
To use it:
- Go back to the old version of React Native
- Run "npm install -g react-native-git-upgrade"
- Run "react-native-git-upgrade"
See https://facebook.github.io/react-native/docs/upgrading.html
If you have created your project with the expo command, like expo init projectname, then afterwards you have to eject your project:
expo eject
If you have created you project by react-native init projectName then you have to use
react-native eject
May be it's too late, I replaced the Android folder from a backup file. It worked for me.
Related
Eas build brokes the app, when classic expo build works just fine
i have a problem with eas build (expo), My app size is about ~60mb (using expo build:android), and that build is working just fine, (I'am using physically phone). I've build the same app, no changes, with eas build, there is a crash. How i run eas build: eas build -p android --profile preview How i run expo build: expo build:android -t apk I want to point, I'am not getting any errors when Grandle is runned, and build is just fine There is my eas.json { "build": { "preview": { "android": { "buildType": "apk" } }, "preview2": { "android": { "gradleCommand": ":app:assembleRelease" } }, "preview3": { "developmentClient": true }, "production": {} }, "cli": { "version": ">= 0.48.2" } } How can i check the log of crash? Does someone had something similar? Maybe diffrent solution to make app smaller?
In my case, if an environment variable was missing on first screen the app would crash. The problem was that I had my variables in an .env file, which will work for the classic build but doesn't in eas build. If that's your case, you'll need to declare your environment variables in your eas.json file, or create a secret for your app through expo's website for sensitive values. You can read more about it here: https://docs.expo.dev/build-reference/variables/
Maybe any logs? I've had 1 problem regarding Android Gradle plugin requires Java 11 to run. You are currently using Java 1.8. **EXPO.dev** and I'm working with Firebase, then the problem was about .gitignore having google-service.json and .env, which as per this comment are not uploaded in the EAS Build.
I'm having the same problem and working through debugging. Here's a good place to start -- if you're on mac, connect an android device and run: adb logcat '*:S' ReactNative:V ReactNativeJS:V This will help you log relevant errors and debug the issue. Simply running adb logcat logs an unmanageably large amount of data.
The issue and the answer are actually in this post, but I'll outline it here briefly. I had the same issue with undefined .env variables. The issue is that the files in your .gitignore file aren't uploaded to eas machine that assembles your build. But you can create .easignore file that would be a copy of your .gitignore file excluding your .env file.
Javascript bundler building stuck at 99%
Expo react-native app does not load on connected iphone When I start my app using the command below: expo start --tunnel I get the following error: Logs for your project will appear below. Press Ctrl+C to exit. Unable to resolve "react-native-vector-icons/AntDesign" from "node_modules/react-native-elements/src/helpers/getIconType.js" Building JavaScript bundle [=================================================================================================== ] 99% I am using ios 10.13.6 High Sierra. Anybody have seen this issue before? any suggestions to debug or resolve this issue?
it looks like you are not using the babel preset which is set up when you initialize a project in expo. this preset remaps react-native-vector-icons to #expo/vector-icons, so you would not see this error if you were using it. if you are using sdk32, you can fix that by creating babel.config.js in your project (and removing .babelrc if there is one) and adding this to babel.config.js: module.exports = function(api) { api.cache(true); return { presets: ['babel-preset-expo'], }; }; now close the packager and run expo start -c. if you are using an older sdk version than sdk32, you can just edit .babelrc (or create it if it doesn't exist) and change it to this: { "presets": ["babel-preset-expo"], "env": { "development": { "plugins": ["transform-react-jsx-source"] } } }
I removed react-native-elements from package.json. I then ran the following command: rm -rf node_modules package-lock.json; npm install then issued the following command: expo start -c --tunnel This seemed to have fixed the issue. I need the native-react-elements package so the next thing is that I am going to add it back and try to test with different versions of react-native-elements package.
React native - missing srcipt: ios
How to run react native app in iOS Stimulator? I'm using npm run ios but I'm getting this error missing srcipt: ios How to solve this?
You can run your project with just simple react-native run-ios And if you want to run on any particular simulator device run this react-native run-ios --simulator="iPhone 6s" // Check your available devices
Usually we have package.json with any command line scripts, for example: "scripts": { "test": "node ./node_modules/jest/bin/jest.js --watchAll", "dev": "exp start --dev --lan", "build-android": "exp build:android", "build-ios": "exp build:ios" }, In your case, I am not sure from which source you initialized or cloned your project. But you will need to add and you can add without any issue the missing scripts. You can label them by anything, e.g. "test" can be named by "mytest". The example I have given above, you can see command exp, this is a module that you will need to install globally in order to run this command. using npm install -g exp command. Then you can run the custom added scripts. Find anything confusing, ask again.
Did you try running react-native run-ios? https://facebook.github.io/react-native/docs/running-on-simulator-ios.html If that doesn't work, you can always open project-directory/app/ios/[your-project-name].xcodeproj in xcode, and run the simulator in xcode directly.
Expo : cannot find a module LogReporter
I have created a React Native Project and I was trying to open that project in Expo XDE. It throws the following error: Cannot find module ...\node_modules\expo\tools\LogReporter Firstly I created a React Native project by cloning a KitchenSink Project. Link: NativeBase-KitchenSink When I started the project by issuing series of commands inside the project root directory: npm install and then expo start I saw that the app.json was also not proper, which was the following: { "name": "NativebaseKitchenSink", "displayName": "NativebaseKitchenSink" } After issuing expo start react-native reported that the app.json is not to be found in the current directory. [17:05:08] Starting project at D:\Projects\ReactNativeProjects\AwesomeProject [17:05:10] Error: Missing app.json. See https://docs.expo.io/ [17:05:10] Couldn't start project. Please fix the errors and restart the project. [17:05:10] Error: Couldn't start project. Please fix the errors and restart the project. at C:\xdl#51.4.0\src\Project.js:1565:11 at Generator.next () at step (C:\Users\hp\AppData\Roaming\npm\node_modules\expo-cli\node_modules\xdl\build\Project.js:2033:191) at C:\Users\hp\AppData\Roaming\npm\node_modules\expo-cli\node_modules\xdl\build\Project.js:2033:361 at process._tickCallback (internal/process/next_tick.js:68:7) I changed app.json to: { "expo": { "name": "AwesomeProject", "description": "A Kitchen Sink project.", "slug": "AwesomeProject", "privacy": "public", "sdkVersion": "30.0.0", "platforms": [ "ios", "android" ], "ios": { "supportsTablet": true }, "android": { "package": "com.abhsax.first" }, "version": "1.0.0", "orientation": "portrait", "icon": "./assets/logo.png", "splash": { "image": "./assets/splashscreen.png", "resizeMode": "contain", "backgroundColor": "#ffffff" }, "updates": { "fallbackToCacheTimeout": 0 }, "assetBundlePatterns": [ "**/*" ] } } There were some updates in the project when I issued npm install again. Then I issued: expo start This error came: (node:2044) UnhandledPromiseRejectionWarning: Error: Cannot find module 'D:\Projects\ReactNativeProjects\AwesomeProject\node_modules\expo\tools\LogReporter' Why am I getting this error, and how can I fix it?
check your package.json if it contains all needed dependencies and run npm install in the home directory of the project if a package is missing you can add it with npm install <package_name> --save if you are using yarn run: yarn add expo
I did: yarn add expo and it worked for me =)
See docs: introducing-button-yarn-and-a-public-roadmap and npm-vs-yarn-in-react-native These documents say that since the project configured using Yarn, you have to follow Yarn way. [Note: There is a file yarn.lock inside the root directory of the project, you have posted] Therefore such projects are dealt by following the instructions in the documentation. Please see How do I create a React Native project using Yarn? to actually create a react-native project using Yarn. And please be sure to remove node_modules folder and issue command npm install before adding react native CLI using yarn. You have to remove package-lock.json from your project root. This will be to prevent mixing different package managers : npm and yarn. Instead, it will be a good idea not to use npm, and in order to generate node_modules, just issue command: yarn Last link recommends to install every package you need using yarn, and not to use any other package manager: yarn global add react-native-cli to add react-native: yarn add react-native to add missing packages: yarn add react-base --save and to install expo using yarn: yarn add expo install expo-cli yarn add expo-cli It is possible that you can do without Expo. Just focus on react-native and yarn. Generate android and ios folders: react-native eject Start yarn: yarn start run build of your choice, and make sure the SDKs are installed. react-native run-android Please also see: Uncaught TypeError: Cannot read property 'forEach' of undefined, on a KitchenSink demo Happy Coding :-)
Install the Expo modules npm install --save i.e. npm install expo --save
rollback with npm install -g expo-cli#2.4.3
React Native version mismatch
Want to improve this post? Provide detailed answers to this question, including citations and an explanation of why your answer is correct. Answers without enough detail may be edited or deleted. Getting the following message when I init a new project and then launch the Xcode emulator: React-Native Version Mismatch Javascript Version 0.50.1 Native version: 0.50.0 Make sure you have rebuilt the native code. ... Does anyone know what is going on here and can help me?
This is what I've done with it: Close all terminals and run build again. You may forget to close nodejs terminal from another project, and they happen to have installed different react version. So the code fetches from nodejs server conflicts with the native one.
In case you created your react-native app using create-react-native-app. You should have a app.json (expo). and a package.json file, check if the expo versions match and change accordingly. For example in my case the problem was that in the app.json file I had a 25.0.0 version for the expo sdkVersion attribute, I change that to 23.0.0 and everything worked. package.json: "dependencies": { "expo": "^23.0.4", "react": "16.0.0", "react-native": "^0.50.4" } app.json: { "expo": { "sdkVersion": "23.0.0" // before was 25.0.0 } }
Just go to your android/app/build.gradle and then add to the dependencies section: dependencies{ compile ("com.facebook.react:react-native:0.50.3") { force = true } } /// the react native version can be found in package.json
For Android developers who couldn't get it fixed by just closing and rebuilding, Manually uninstall the app on the emulator/device.
just force react native version in your android's app level gradle file, in the dependencies section. compile ("com.facebook.react:react-native:0.52.0") { force = true } worked for me
If you're running your React Native app through Expo, upgrading React Native is liable to cause this error (as noted at https://github.com/expo/expo/issues/923). If that's your scenario, your options are: Bump Expo (which is listed in your package.json) to a version that is compatible with your React Native version (if one exists, which may not be the case - judging by the linked issue, I figure that Expo support trails React Native releases). Discard your changes, delete and reinstall your Node modules, Eject from Expo, and then (after checking that you can still run your app post-ejection) try your upgrade again.
I've never seen this error before, but whenever I can't get Xcode and React-Native to play well together, I do a couple of things. Check what version of Xcode I'm working with. If it needs to be updated, I update it. Then clearing watchman and the cache are the second place I go. I don't use the reset cache command. It always says that I need to verify the cache, so I skip that (you can do it though, I just get confused). I use rm -rf $TMPDIR/react-* to get rid of any cached builds. If that doesn't work, I try to build the app in Xcode, then work my way from there, to build it with react-native run-ios. With this error message, it seems you might start by trying to build it with Xcode. Hope that helps...let me know your progress with it. Good luck! (Also, you could update to RN 0.51 as another attempt to get your versions synced.)
I had this problem for the longest time and none of the above solutions helped. I was in the middle of upgrading react native in a create-react-native-app project until I found out that not all versions of Expo support the latest React Native. Found this page linked in the documentation that shows which version combinations of React Native, React, and Expo are officially supported: Source: https://github.com/react-community/create-react-native-app/blob/master/VERSIONS.md Editing the app.json and package.json files to match the corresponding versions and running npm install got everything working again.
I am using a physical device, in my case this solved the problem: Uninstall the app lsof -i :8081 kill -9 PID Rebuild the app (react-native run-android or react-native run-ios)
In your build.gradle file add the following implementation ("com.facebook.react:react-native:0.51.0") { force = true; } replace 0.51.0 with the version in your package.json
Try installing the dependencies again. That worked for me- 1.) yarn/npm install 2.) yarn/npm start --reset-cache
For me it was due to react-native version in dependency section of package.json file. It was: "dependencies": { "expo": "^27.0.1", "react": "16.3.1", "react-native": "~0.55.0" } I chaged it to: "dependencies": { "expo": "^27.0.1", "react": "16.3.1", "react-native": "0.52.0" } Now it works fine.
In my case installing a new virtual device helped. Now I am using 1 device per app.
It happens sometimes when you try to run without closing the node server, in which the previous app was running, so try restarting React.To do so, just run the following commands: 1. To kill current processes killall node -9 2. To Start React Native react-native start 3. Then Run android react-native run-android
For my case I'm facing it on iOS, and I've tried to reset and clear all cache using below command but failed too, despite many comments saying that the root cause is there is react packager running somewhere accidentally, I've restarted my mac and the problem still remained. watchman watch-del-all && rm -rf node_modules/ && yarn cache clean && yarn install && yarn start --reset-cache The solution is, to delete the build folder # /ios/build, then execute react-native run-ios solved it
I have tried the solutions above but adding this to AndroidManifest.xml seems to fix it. android:usesCleartextTraffic="true"
For others with the same problem on iOS with CocoaPods: I tried all of the solutions above, without luck. I have some packages with native dependencies in my project, and some of those needed pod modules being installed. The problem was that React was specified in my Podfile, but the React pod didn't automatically get upgraded by using react-native-git-upgrade. The fix is to upgrade all installed pods, by running cd ios && pod install.
Expo users - make sure your app.json sdk version and package.json expo version are (may be equal) compatible to each other.
The fix we did was to make sure the ANDROID_HOME and PATH variables were set up prior to the build. First, run the below two commands then the build the app for the device. export ANDROID_HOME=/Users/username/MyFiles/applications/androidsdk export PATH=$PATH:$ANDROID_HOME/tools:$ANDROID_HOME/platform-tools
This is working for me : react-native start --reset-cache
I also had this issue using Expo and iOS Simulator. What worked for me was erasing the Simulator in Hardware > Erase All Content and Settings...
I have got the same issue while building my react native app for android and I did the following which worked for me. The "JavaScript version 0.50.1" in the error console is the react-native version in your package.json file. Make sure it is the same version as "Native version 0.50.0" in the error console. I have Updated the react-native version to the "Native Version 0.50.0" as prompted in the error console. Rebuild the app react-native run-android.
Possible Fix: Delete the package-lock.json Run: watchman watch-del-all && rm -rf $TMPDIR/react-* && rm -rf $TMPDIR/haste-map-react-native-packager-* && rm -rf node_modules/&& npm install If the problem persists, try to execute the project directly from the Xcode This worked for me.
In my case (NOT using expo & Android build) package.json "dependencies": { "react": "16.3.1", "react-native": "0.55.2" } And app.json { "sdkVersion": "27" } resolved the issue
I was trying to build and run a React Native app from WebStorm and ran into this problem. The simple solution for me was: watchman watch-del-all On macOS, if watchman is not already installed, install it using Homebrew: brew install watchman
In my case, I changed the expo version manually. I got the same issue because I forgot to update sdkVersion in app.json and babel-preset-expo in package.json After that run: expo r -c to clear cache and start the app.
This Answer is Published in 2020, Fix this Error in 3 steps: First step: I changed the value of expo in package.json file to the latest supported version, according to expo documents(visit here). Second step: I changed the value of sdkVersion in app.json file to the same value of expo in package.json.( equal number to last step). Third step : I changed the value of react-native in package.json file to the same value of React Native Version , according to expo documents(visit here). now your ready to go. use npm install to install specified version of dependencies and then npm start to run the project
I got this classing when TypeScript type definitions mismatched. E.G react-native at 0.61.5 in dependencies and #types/react-native at 0.60.0 in devDependencies. As soon as I updated devDependencies it worked. Didn't have to restart anything.
edit your package.json for your javascript version "react-native": "^0.50.1", after run npm install
For me, who is running with a monorepo, there was a hidden react-native version inside yarn.lock. It was not present in any package.json, but was never deleted. I removed that particular react-native version from yarn.lock, and did a yarn install This cleaned out alot of old stuff and made sure that things was working fine.