Problems encountered in building react-native environment

D:\reactnative\MyProject>react-native run-android
Scanning folders for symlinks in D:\reactnative\MyProject\node_modules (44ms)
JS server already running.
Building and installing the app on the device (cd android && gradlew.bat install
Debug)...
Starting a Gradle Daemon, 1 incompatible and 1 stopped Daemons could not be reus
ed, use --status for details
NDK is missing a "platforms" directory.
If you are using NDK, verify the ndk.dir is set to a valid NDK directory.  It is
 currently set to D:\\bin\ndk-bundle.
If you are not using NDK, unset the NDK variable from ANDROID_NDK_HOME or local.
properties to remove this warning.

java.net.UnknownHostException: dl.google.com
Failed to connect to host: https://dl.google.com/android/repository/addons_list-
3.xml
Failed to connect to host: https://dl.google.com/android/repository/addons_list-
2.xml
Failed to connect to host: https://dl.google.com/android/repository/addons_list-
1.xml
Failed to download any source lists!
File C:\Users\Administrator\.android\repositories.cfg could not be loaded.

FAILURE: Build failed with an exception.

* What went wrong:
A problem occurred configuring project ":app".
> Failed to find Build Tools revision 26.0.3

* Try:
Run with --stacktrace option to get the stack trace. Run with --info or --debug
option to get more log output.

BUILD FAILED

Total time: 35.036 secs
Could not install the app on the device, read the error above for details.
Make sure you have an Android emulator running or a device connected and have
set up your Android development environment:
https://facebook.github.io/react-native/docs/getting-started.html

D:\reactnative\MyProject>npm run android
npm ERR! missing script: android

npm ERR! A complete log of this run can be found in:
npm ERR!     C:\Users\Administrator\AppData\Roaming\npm-cache\_logs\2018-08-22T0
2_59_02_079Z-debug.log

D:\reactnative\MyProject>



= = I"ve been messing with Baidu all day. I can"t get it right. Could you tell me what went wrong

?

D:\reactnative\MyProject>npm run android
npm ERR! missing script: android

look at this prompt, it is obvious that you are executing npm scripts incorrectly. npm run xxx executes scripts is a scripts command defined in the package.json file. Obviously, this android command is not available in package.json of your project.

take a closer look at package.json .

< hr > Also, you failed to download some resources of android .

java.net.UnknownHostException: dl.google.com
Failed to connect to host: https://dl.google.com/android/repository/addons_list-
3.xml
Failed to connect to host: https://dl.google.com/android/repository/addons_list-
2.xml
Failed to connect to host: https://dl.google.com/android/repository/addons_list-
1.xml
Failed to download any source lists!
File C:\Users\Administrator\.android\repositories.cfg could not be loaded.

FAILURE: Build failed with an exception.

some of these resources need to climb over the wall, or set up some proxies. Please find it yourself.

Menu