失眠网,内容丰富有趣,生活中的好帮手!
失眠网 > React Native 一:开发环境搭建

React Native 一:开发环境搭建

时间:2020-07-01 18:08:09

相关推荐

React Native 一:开发环境搭建

在学习React Native的过程中,相信对于一个App开发工程师,没有充分的学习过前端开发技术的同学来说,顺利的搭建好开发环境还是比较纠结的。

下面,我就根据我自己学习过程中的总结,跟大家讲解讲解如何从零开始顺利的搭建React Native的开发环境,希望对大家的学习有所帮助。我是以Ubuntu操作系统进行开发的,具体步骤如下:

1.安装Git

apt-get install git

2.安装JDKa.在官方网站下载相关的jdk-8u77-linux-x64.tar.gz包;b.在你的指定目录下解压;

tar zxvf jdk-8u77-linux-x64.tar.gz

c.JAVA_HOME环境变量的配置; 编辑profile文件:

gedit /etc/profile

在文件尾部添加:

export JAVA_HOME=/usr/local/opt/jdk1.8.0_77export CLASSPATH=.:$JAVA_HOME/lib:$JAVA_HOME/jre/lib:$CLASSPATH export PATH=$JAVA_HOME/bin:$JAVA_HOME/jre/bin:$PATH

使用配置生效:

source /etc/profile

d.检验安装是否成功:java -version;3.安装Android Studio和Android SDKa.将下载的android-studio-ide-141.2456560-linux.zip解压到指定目录下(/usr/local/opt)下

unzip android-studio-ide-141.2456560-linux.zip

b.将下载的android-sdk_r24.4.1-linux.tgz解压到指定目录(/usr/local/opt)下

tar zxvf android-sdk_r24.4.1-linux.tgz

c.启动android-studio

cd /usr/local/opt/android-studio/bin./studio.sh

d.创建demo应用程序并运行,检测环境是否安装成功;提示1:pengchengxiang@ubuntu:/usr/local/opt/android-studio/bin$ sudo ./studio.sh ERROR: Cannot start Android Studio No JDK found. Please validate either STUDIO_JDK, JDK_HOME or JAVA_HOME environment variable points to valid JDK installation. 处理1:避免使用sudo方式启动;提示2:在启动Android Studio的时候,有报错:Unable to run mksdcard SDK tool,则处理如下: sudo apt-get install lib32z1 lib32ncurses5 lib32bz2-1.0 lib32stdc++6提示3:如果在启动模拟器的时候,有如下报错,则处理如下: Starting emulator for AVD 'AVD_for_Galaxy_Nexus_by_Google' PANIC: Could not find AVD_for_Galaxy_Nexus_by_Google.ini file in $ANDROID_AVD_HOME nor in $HOME/.android/avd"! 处理3:ln -s /root/.android/avd /home/pengchengxiang/.android/avd提示4:在启动android studio的过程中,如果提示: System Health IBus prior to 1.5.11 may cause input problem. See IDEA-78860 for details.处理4:System Settings ­> Language Support,改为Keyboard input methodat the bottom of the page fromibustonone.提示5:在启动android studio的过程中,设置sdk路径的时候,如果提示: the path ''/usr/local/opt/android-sdk-linux' is not writeable,please chose a new location 处理5: chown -R root /usr/local/opt/android-sdk-linux chgrp -R root /usr/local/opt/android-sdk-linux chmod -R 777 /usr/local/opt/android-sdk-linux4.定义ANDROID_HOME环境变量a.在/etc/profile添加如下环境变量:

export ANDROID_HOME=/usr/local/opt/android-sdk-linuxexport PATH=$PATH:$ANDROID_HOME/platform-tools

b.source /etc/profile使得配置生效;5.使用gradle deamona.在gradle官网下载gradle-2.12-all.zipb.将其解压到你安装目录下/usr/local/opt;

unzip gradle-2.12-all.zip

c.配置GRADLE_HOME环境变量,在/etc/profile文件中添加如下配置;

export GRADLE_HOME=/usr/local/opt/gradle-2.12export PATH=$PATH:$GRADLE_HOME/bin

d.source /etc/profile使得配置生效;e.执行gradle -v确定安装成功;f.配置gradle deamon

touch ~/.gradle/gradle.properties && echo "org.gradle.daemon=true" >> ~/.gradle/gradle.properties

6.配置你的SDKa.打开你的Android SDK Manager,在展示的窗口检查你是否安装如下组件:b.配置ANDROID_HOME环境变量,在/etc/profile文件中添加如下配置;

export ANDROID_HOME=/usr/local/opt/android-sdk-linuxexport PATH=$PATH:$ANDROID_HOME/platform-tools

c.source /etc/profile使得配置生效;7.安装Genymotion模拟器a.在Genymotion官网下载安装包genymotion-2.6.0-linux_x64.bin;b.修改安装包的执行权限,并执行安装指定安装目录;

pengchengxiang@ubuntu:~/Desktop$ chmod +x genymotion-2.6.0-linux_x64.binpengchengxiang@ubuntu:~/Desktop$ sudo ./genymotion-2.6.0-linux_x64.bin -d /usr/local/opt/[sudo] password for pengchengxiang:Installing for all users.Installing to folder [/usr/local/opt/genymotion]. Are you sure [y/n] ? y- Trying to find VirtualBox toolset .................... OK (Valid version of VirtualBox found: 4.3.36_Ubuntur105129)- Extracting files ..................................... OK (Extract into: [/usr/local/opt/genymotion])- Installing launcher icon ............................. OKInstallation done successfully.You can now use these tools from [/usr/local/opt/genymotion]:- genymotion- genymotion-shell- gmtool

c.进入到/usr/local/opt/genymotion目录,启动模拟器;

pengchengxiang@ubuntu:/usr/local/opt/genymotion$ ./genymotion

提示1:运行虚拟机的时候,如果弹出对话框报错如下: Unable to start the virtual device. VirtualBox cannot start the virtual device. To find out the cause of the proble.start the virtual device from VirtualBox. 处理1:Configure virtual device->Processor+Base Memory调整为1+1024;提示2:运行虚拟机的时候,如果弹出对话框报错如下: Unable to start the virtual device. The Virtual device got no Ip address. The VirtualBox DHCP servers has not assigned an IP address to the virtual device. To find out the cause of the proble.start the virtual device from VirtualBox.8.安装NodeJS

sudo apt-get install -y build-essentialcurl -sL /setup_4.x | sudo -E bash -sudo apt-get install -y nodejs

9.安装Watchman

git clone /facebook/watchman.gitcd watchmangit checkout v4.1.0 # the latest stable release./autogen.sh./configure --prefix=/usr/local/opt/watchmanmakesudo make install

提示1:如果在安装过程中,出现如下报错: x86_64-linux-gnu-gcc -pthread -fno-strict-aliasing -DNDEBUG -g -fwrapv -O2 -Wall -Wstrict-prototypes -fPIC- I/usr/include/python2.7 -c pywatchman/bser.c -o build/temp.linux-x86_64-2.7/pywatchman/bser.o pywatchman/bser.c:31:20: fatal error: Python.h: No such file or directory #include <Python.h> ^ compilation terminated. error: command 'x86_64-linux-gnu-gcc' failed with exit status 1 make[1]: *** [py-build] Error 1 处理1:sudo apt-get install python-dev提示2:如果在安装过程中,出现如下报错: pengchengxiang@ubuntu:~/watchman$ sudo ./autogen.sh ./autogen.sh: 9: ./autogen.sh: aclocal: not found ./autogen.sh: 10: ./autogen.sh: autoheader: not found ./autogen.sh: 11: ./autogen.sh: automake: not found ./autogen.sh: 12: ./autogen.sh: autoconf: not found 处理2:apt-get install autoconf10.安装Flow

pengchengxiang@ubuntu:~$ npm install -g flow-binnpm WARN deprecated graceful-fs@3.0.8: graceful-fs version 3 and before will fail on newer node releases. Please update to graceful-fs@^4.0.0 as soon as possible.> spawn-sync@1.0.15 postinstall /usr/lib/node_modules/flow-bin/node_modules/bin-wrapper/node_modules/bin-check/node_modules/spawn-sync> node postinstallnpm WARN deprecated lodash@1.0.2: lodash@<3.0.0 is no longer maintained. Upgrade to lodash@^4.0.0.npm WARN deprecated graceful-fs@1.2.3: graceful-fs version 3 and before will fail on newer node releases. Please update to graceful-fs@^4.0.0 as soon as possible./usr/bin/flow -> /usr/lib/node_modules/flow-bin/cli.js> flow-bin@0.22.1 postinstall /usr/lib/node_modules/flow-bin> node lib/install.jsfetch : /facebook/flow/releases/download/v0.22.1/flow-linux64-v0.22.1.zipprogress : [====================] 100% 0.0s✔ flow binary test passed successfullyflow-bin@0.22.1 /usr/lib/node_modules/flow-bin├── logalot@2.1.0 (figures@1.5.0, squeak@1.3.0)└── bin-wrapper@2.1.3 (os-filter-obj@1.0.3, is-path-global@1.0.2, npm-installed@1.0.0, globby@1.2.0, lnfs@1.1.0, download-status@2.2.1, bin-version-check@2.1.0, bin-check@1.1.0, download@3.3.0)

11.安装React-Native

pengchengxiang@ubuntu:~$ npm install -g react-native-cli/usr/bin/react-native -> /usr/lib/node_modules/react-native-cli/index.jsreact-native-cli@0.2.0 /usr/lib/node_modules/react-native-cli├── semver@5.1.0├── minimist@1.2.0├── chalk@1.1.3 (escape-string-regexp@1.0.5, ansi-styles@2.2.1, supports-color@2.0.0, strip-ansi@3.0.1, has-ansi@2.0.0)└── prompt@0.2.14 (revalidator@0.1.8, pkginfo@0.4.0, read@1.0.7, utile@0.2.1, winston@0.8.3)

12.创建React-Native项目

pengchengxiang@ubuntu:~$ react-native init AwesomeProjectThis will walk you through creating a new React Native project in /home/pengchengxiang/AwesomeProjectInstalling react-native package from npm...Setting up new React Native app in /home/pengchengxiang/AwesomeProjectreact@0.14.8 node_modules/react├── envify@3.4.0 (through@2.3.8, jstransform@10.1.0)└── fbjs@0.6.1 (whatwg-fetch@0.9.0, ua-parser-js@0.7.10, loose-envify@1.1.0, promise@7.1.1, core-js@1.2.6)To run your app on iOS:cd /home/pengchengxiang/AwesomeProjectreact-native run-ios- or -Open /home/pengchengxiang/AwesomeProject/ios/AwesomeProject.xcodeproj in XcodeHit the Run buttonTo run your app on Android:Have an Android emulator running (quickest way to get started), or a device connectedcd /home/pengchengxiang/AwesomeProjectreact-native run-android

13.在Android设备上启动Appa.检查你的手机是已经通过adb连接到PC上:b.配置Android设备8081端口,访问PC的8081端口的React服务

pengchengxiang@ubuntu:~/AwesomeProject$ adb reverse tcp:8081 tcp:8081

c.启动PC端的React服务

pengchengxiang@ubuntu:~/AwesomeProject$ sudo react-native start[sudo] password for pengchengxiang:┌──────────────────────────────────────────────────────────────┐│ Running packager on port 8081. ││ Keep this packager running while developing on any JS projects. Feel ││ free to close this tab and run your own packager instance if you ││ prefer. │ ││ /facebook/react-native││ └───────────────────────────────────——————─────────────────────┘Looking for JS files in/home/pengchengxiang/AwesomeProject[1:36:30 AM] <START> Building Dependency Graph[1:36:30 AM] <START> Crawling File System[Hot Module Replacement] Server listening on /hotReact packager ready

d.安装并启动App

pengchengxiang@ubuntu:~/AwesomeProject$ react-native run-androidStarting JS server...Building and installing the app on the device (cd android && ./gradlew installDebug)...WARNING [Project: :app] Current NDK support is deprecated. Alternative will be provided in the future.:app:preBuild UP-TO-DATE:app:preDebugBuild UP-TO-DATE:app:checkDebugManifest:app:preReleaseBuild UP-TO-DATE:app:prepareComAndroidSupportAppcompatV72301Library UP-TO-DATE:app:zipalignDebug UP-TO-DATE:app:assembleDebug UP-TO-DATE:app:installDebugInstalling APK 'app-debug.apk' on 'x600 - 5.0.2'Installed on 1 devicedBUILD SUCCESSFULTotal time: 18.708 secsStarting the app (/usr/local/opt/android-sdk-linux/platform-tools/adb shell am start -n com.awesomeproject/.MainActivity)...Starting: Intent { cmp=com.awesomeproject/.MainActivity }

c.启动App后,点击Road JS等待加载。加载成功后,显示如下页面:

提示1:在安装项目App的时候,如果报错如下: pengchengxiang@ubuntu:~/AwesomeProject$ sudo react-native run-android [sudo] password for pengchengxiang: Starting JS server... Building and installing the app on the device (cd android && ./gradlew installDebug)... ERROR: JAVA_HOME is not set and no 'java' command could be found in your PATH. Please set the JAVA_HOME variable in your environment to match the location of your Java installation. 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/android-setup.html 处理1:不使用sudo安装项目app,执行react-native run-android提示2:在运行项目的时候,如果报错如下: pengchengxiang@ubuntu:~/AwesomeProject$ react-native run-android fs.js:549 return binding.open(pathModule._makeLong(path), stringToFlags(flags), mode); ^ Error: EACCES: permission denied, open '/home/pengchengxiang/.babel.json' at Error (native) at Object.fs.openSync (fs.js:549:18) at Object.fs.writeFileSync (fs.js:1156:15) at save (/home/pengchengxiang/AwesomeProject/node_modules/react-native/node_modules/babel-register/lib/cache.js:48:19) at nextTickCallbackWith0Args (node.js:420:9) at process._tickCallback (node.js:349:13) at Function.Module.runMain (module.js:443:11) at startup (node.js:139:18) at node.js:968:3 处理2:改变.babel.json文件的访问权限 pengchengxiang@ubuntu:~$ ls -al | grep .babel.json-rw-r--r-- 1 rootroot715363 Apr 2 00:58 .babel.json pengchengxiang@ubuntu:~$ sudo chown pengchengxiang ~/.babel.json pengchengxiang@ubuntu:~$ ls -al | grep .babel.json -rw-r--r-- 1 pengchengxiang root715363 Apr 2 00:58 .babel.json提示3:遇见如下报错 FAILURE: Build failed with an exception. * What went wrong: A problem occurred configuring project ':app'. > failed to find Build Tools revision 23.0.1 处理3,打开Android SDK,安装Build Tools revision 23.0.1提示4:遇见如下报错 FAILURE: Build failed with an exception. * What went wrong: Could not create service of type TaskArtifactStateCacheAccess using TaskExecutionServices.createCacheAccess(). > Failed to create parent directory '/home/pengchengxiang/AwesomeProject/android/.gradle' when creating directory '/home/pengchengxiang/AwesomeProject/android/.gradle/2.4/taskArtifacts' 处理4:不使用sudoreact-native init AwesomeProject 创建项目直接react-native init AwesomeProject提示5:遇见如下报错 FAILURE: Build failed with an exception. * What went wrong: Execution failed for task ':app:installDebug'. > com.android.builder.testing.api.DeviceException: com.android.ddmlib.InstallException: Unable to upload some APK 处理5:把项目中的~/android/app/build.gradle中的gradle版本改为1.2.3提示6:在启动react服务的时候,运行几秒后报错如下: pengchengxiang@ubuntu:~/AwesomeProject$ react-native start ┌────────────────────────────────────────────────────────────────────────────┐ │ Running packager on port 8081. │ ││ │ Keep this packager running while developing on any JS projects. Feel │ │ free to close this tab and run your own packager instance if you │ │ prefer. │ ││ │/facebook/react-native │ ││ └────────────────────────────────────────────────────────────────────────────┘ Looking for JS files in /home/pengchengxiang/AwesomeProject [6:38:04 AM] <START> Building Dependency Graph [6:38:04 AM] <START> Crawling File System [Hot Module Replacement] Server listening on /hot React packager ready. ERROR watch /home/pengchengxiang/AwesomeProject/android/app/build/intermediates/res/debug/values-el ENOSPC {"code":"ENOSPC","errno":"ENOSPC","syscall":"watch /home/pengchengxiang/AwesomeProject/android/app/build/intermediates/res/debug/values- el","filename":"/home/pengchengxiang/AwesomeProject/android/app/build/intermediates/res/debug/values-el"} Error: watch /home/pengchengxiang/AwesomeProject/android/app/build/intermediates/res/debug/values-el ENOSPC at exports._errnoException (util.js:870:11) at FSWatcher.start (fs.js:1234:19) at Object.fs.watch (fs.js:1262:11) at NodeWatcher.watchdir (/home/pengchengxiang/AwesomeProject/node_modules/react-native/node_modules/sane/src/node_watcher.js:144:20) at Walker.<anonymous> (/home/pengchengxiang/AwesomeProject/node_modules/react-native/node_modules/sane/src/node_watcher.js:353:12) at emitTwo (events.js:87:13) at Walker.emit (events.js:172:7) at /home/pengchengxiang/AwesomeProject/node_modules/react-native/node_modules/sane/node_modules/walker/lib/walker.js:69:16 at /home/pengchengxiang/AwesomeProject/node_modules/react-native/node_modules/graceful-fs/graceful-fs.js:142:16 at /home/pengchengxiang/AwesomeProject/node_modules/react-native/node_modules/graceful-fs/graceful-fs.js:142:16 See http://facebook.github.io/react-native/docs/troubleshooting.html for common problems and solutions. 处理6:sudoreact-native start提示7:如果App在启动之后,显示红色报错界面,报错如下 java.util.concurrent.ExecutionException:java.lang.RuntimeException:ReferenceError:Can't find variable:__fbBatchedBride(<unknownfile>:1> 或者Couldn‘tgetthenativecallqueue:bridgeconfigurationisn'tavailable

处理7:如果你使用USB在你的设备上进行调试,则运行adb reverse tcp:8081 tcp:8081,然后点击Road JS按钮,等待加载。

提示8:运行adb reverse tcp:8081 tcp:8081出现error closed 测试设备需要5.0以上才可以支持这个命令

提示9:安装完成,发现页面是空白的,什么都没有? 可以从设置——应用中选择某一个应用,然后将悬浮窗打开即可, 设置——应用管理——选择需要的app——权限管理——打开悬浮窗

提示10:运行结束出现如图1内容,点击RELOAD JS 出现图2:如果手机和电脑不在同一个网段,或者手机不能访问到,就会出现如下页面:

处理:(5.0或4.4手机都适用)摇一摇手机,出现如图3画面-点击DevSettings->Debugserver hostfordevice,填入你开发电脑的 IP 地址。ipconfig查看电脑的ip

如果觉得《React Native 一:开发环境搭建》对你有帮助,请点赞、收藏,并留下你的观点哦!

本内容不代表本网观点和政治立场,如有侵犯你的权益请联系我们处理。
网友评论
网友评论仅供其表达个人看法,并不表明网站立场。