背景
React Native出來已經一段時間了,相對來說也算穩定了,在很多的企業中都實際使用他們,混合開發已經是未來的一種趨勢,混合開發中使用的技術很多,不外乎Html5、JS框架通過一定的技術和原始交互,目前主流混合開發React Native、Cordova、APICloud、MUI、AppCan、Sencha Touch、jQuery Mobile等等(其他的小伙伴們自己收集),目前網上寫教程的人很多,但是React Native更新速度很快,根據他們的教程,中間會遇到各種問題,今天我和大家一起踩踩各種坑,讓小伙伴們快速集成到自己的APP中。后續持續更新,反饋發郵件411437734@qq.com共同探討。
集成的小伙伴一定要注意圖片中標注和備注哦,不然有可能會走彎路哦
集成步驟
參考官方文檔->react native 文檔
本文使用開發環境 Android studio
注意最新的React Native支持的最新的SDK為16(android4.1)
npm環境,小伙伴們自己安裝 nodeJS自己安裝,可以參考官方文檔安裝環境,有問題可以發411437734@qq.com溝通
創建Android項目(已有項目跳過)
-
打開Android studio
14752189589833.jpg -
輸入項目名稱,選擇項目目錄,點擊next
14752190447690.jpg
14752191238908.jpg
14752192158859.jpg
14752193112367.jpg
至此項目創建完成(需要注意的是最新的React Native支持最新SDK版本為16 android4.1)
React Native集成到上面我們創建的ReactNativeAPPDemo中
參考Facebook react native文檔
-
進入項目根目錄,添加JS到項目中-點擊Android studio中的Terminal(如下圖)14752200412681.jpg
分別執行一下語句
npm init
npm install --save react react-native
curl -o .flowconfig https://raw.githubusercontent.com/facebook/react-native/master/.flowconfig
init 主要根據提醒生成package.json文件
install --save react react-native 安裝React 和React Native
curl -o .flowconfig https://raw.githubusercontent.com/facebook/react-native/master/.flowconfig 下載.flowconfig文件
參考圖片
查看項目中有node_modules,說明react和react native 安裝完成
在項目根目錄添加.flowconfig
參考下圖
也可以手動創建在瀏覽器打開https://raw.githubusercontent.com/facebook/react-native/master/.flowconfig網址復制內容創建文件
ReactNativeAppDemo配置相關內容
- 添加"start": "node node_modules/react-native/local-cli/cli.js start" 到
package.json
文件下scripts
標簽 修改前
14752220951994.jpg
修改后
14752221462812.jpg
-
添加index.android.js文件到項目中
14752222197635.jpg
'use strict';
import React from 'react';
import {
AppRegistry,
StyleSheet,
Text,
View
} from 'react-native';
class HelloWorld extends React.Component {
render() {
return (
<View style={styles.container}>
<Text style={styles.hello}>Hello, World</Text>
</View>
)
}
}
var styles = StyleSheet.create({
container: {
flex: 1,
justifyContent: 'center',
},
hello: {
fontSize: 20,
textAlign: 'center',
margin: 10,
},
});
AppRegistry.registerComponent('HelloWorld', () => HelloWorld);
至此React native配置基本完成
- App
build.gradle
配置
dependencies {
...
compile "com.facebook.react:react-native:+" // From node_modules.
}
這里注意不要使用maven中的,因為我們使用的是我們本地node_modules中的,注意最新版本中支持的是23,appcompat-v7:23.0.1,暫時沒有試24的api
- 整個工程
build.gradle
配置
allprojects {
repositories {
...
maven {
// All of React Native (JS, Android binaries) is installed from npm
url "$rootDir/node_modules/react-native/android"
}
}
...
}
- 添加
<uses-permission android:name="android.permission.INTERNET" />
到AndroidManifest.xml:
-
確定External Libraries
14752240537114.jpg
14752241070972.jpg
確定是下是最新的,例如確定是0.34.1而不是0.20.1,如果出現請檢查
maven {
`url "$rootDir/../node_modules/react-native/android"`//地址是否正確
}
修改url "$rootDir*/..*/node_modules/react-native/android"為url "$rootDir/node_modules/react-native/android"
添加native code
官方給出的
到時最新版本中提供了更加簡單的方式,沒錯就是繼承。
在這里我們也需要自定義一個Application否則 運行時會報錯,不信的小伙伴可以試一試
到此為止,ReactNative 集成到已有項目中完成!!!迫不及待的運行試試吧!!
在Terminal中運行 npm start,看到下圖表示啟動成功
運行以后發現如下錯誤
react-native報錯:Could not get BatchedBridge, make sure your bundle is packaged correctly
莫緊張,這是因為bundle沒有打包好。找不到編譯打包后的js文件。其實就是android studio默認的尋找js文件地址和react-native自己的工具編譯所使用的地址不同。
解決方法
方法一
進入項目,在android/app/src/main下新建assets目錄。執行以下命令
$> react-native start > /dev/null 2>&1 &
$> curl "http://localhost:8081/index.android.bundle?platform=android" -o
> "app/src/main/assets/index.android.bundle"
在項目根目錄下執行
<!--$> (cd android/ && ./gradlew assembleDebug)-->
$> (cd 項目名稱/ && ./gradlew assembleDebug)
把創建的apk安裝到android設備
方法二
進入項目,在android/app/src/main下新建assets目錄
啟動服務器
$>react-native start
$>react-native bundle --platform android --dev false --entry-file index.android.js --bundle-output app/src/main/assets/index.android.bundle --assets-dest app/src/main/res/
在assets文件夾下會生成index.android.bundle文件,把創建的apk文件安裝到android設備
方法三
進入項目,在android/app/src/main下新建assets目錄
在package.json中配置下面代碼
"scripts": {
"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 app/src/main/assets/index.android.bundle --sourcemap-output app/src/main/assets/index.android.map --assets-dest android/app/src/main/res/"
},
個人推薦使用方法三,方法三解決不了推薦方法二 手動執行
修改剛剛的package.json文件
如果真機(模擬器)需要執行
adb reverse tcp:8081 tcp:8081
一定要確定連接網絡哦!!
開心的進行開發吧!
其他可能遇到的問題
ReactNative兼容64位Android手機
libgnustl_shared.so" is 32-bit instead of 64-bit類似錯誤
解決方法
- 在項目的根目錄的
gradle.properties
里面添加一行代碼
- 在
build.gradle
文件里添加以下代碼
android {
...
defaultConfig {
...
ndk {
abiFilters "armeabi-v7a", "x86"
}
packagingOptions {
exclude "lib/arm64-v8a/librealm-jni.so"
}
}
}
最后感謝
http://majing.io/questions/589
http://www.cnblogs.com/tony-yang-flutter/p/5864578.html
https://blog.yourtion.com/update-react-native-029-bug.html
http://stackoverflow.com/questions/38870710/error-could-not-get-batchedbridge-make-sure-your-bundle-is-packaged-properly/38874952
http://blog.csdn.net/b992379702b/article/details/52234479
###### Genymotion模擬器運行顯示沒有連接到developement server如下圖

1. 先檢查是否連接到網絡
2. 點擊模擬器中Menu菜單彈出下面圖片,點擊Dev Settings

3. 點擊Debugging 下面的`Debug Server host & port for device`填寫地址和端口


>上文中使用到的項目ReactNativeAPPDemo鏈接: https://pan.baidu.com/s/1i4GkeKt 密碼: vwym
最近小伙伴反饋0.39.0上面沒有ReactApplication接口,請看我的截圖有問題QQ聯系我共同探討
>我的項目中依然可以看到,是不是有的小伙伴gradle文件配置的問題,仔細檢查下,確實有問題的小伙伴,請加QQ私聊

###### 升級ReactNative
> 由于ReactNative 更新比較頻繁,有的時候我們的項目需求根據情況,需要升級到最新或者指定版本的ReactNative,下面給大家介紹下。
1. 安裝git(如果安裝git請求跳過)
> 下載并安裝[git](https://git-scm.com/downloads)
2. 在命令行執行命令
> npm install -g react-native-git-upgrade
> react-native-git-upgrade
3. 更新項目ReactNative依賴
> 通過命令:npm info react-native 查看ReactNative版本
> npm install --save react-native@X.Y 安裝指定版本,X.Y是npm info react-native 查看到的ReactNative版本
4. 更新 react-native upgrade
### 發布Demo 到github Demo 歡迎大家提問交流
> [ReactNativeAppDemo](https://github.com/zdl411437734/ReactNativeAppDemo)
> [提問](https://github.com/zdl411437734/ReactNativeAppDemo/issues)
關注公眾號獲取更多內容和反饋溝通

>轉載請注明出處:http://www.lxweimin.com/p/22aa14664cf9