之前搞安卓开发,电脑上了装了JDK,和AS。环境变量都配置一下。
然后去下载Node.js。命令行安装
npminstall-greact-native-cli
然后
react-nativeinitXXXXXX是你项目的名字
Node.js现在都自己配置环境变量。
然后等一会,初始化挺慢的
然后 启动react-native
react-native start
这个也不快,等启动了,切换到项目目录 cd XXX
启动模拟器 ,adb devices 看一下有无设备 也可以真机
react-nativerun-android 就可以了
真机如果不行就在
项目下的app文件夹下对build.gardle 文件修改在最末尾加上
原文链接:https://www.f2er.com/react/307403.htmlfinaldefTARGET_BUNDLE_DIR='app/src/main/assets/' finaldefTARGET_BUNDLE_FILE='index.android.bundle' finaldefDOWNLOAD_URL=' http://localhost:8081/index.android.bundle?platform=android&dev=false&minify=true' taskdownloadJSBundle<<{ defdir=newFile(TARGET_BUNDLE_DIR) if(!dir.exists()){ dir.mkdirs() } deff=newFile(TARGET_BUNDLE_DIR+TARGET_BUNDLE_FILE) if(f.exists()){ f.delete() } try{ newURL(DOWNLOAD_URL).withInputStream{i->f.withOutputStream{it<<i}} }catch(Exceptione){ e.printStackTrace() } }然后重新运行就可以了。