Android项目集成ReactNative框架

ReactNative推出也有一段日子了,相信很多开发者都想体验一下rn的强大功能,但是目前代码都是基于native代码的,如何加入ReactNative的代码呢?本文将从简单介绍下如何在已有工程的基础上,新增ReactNative模块。

准备条件

1.一个已有的、基于gradle构建的Android应用。
2.Node.js,参见开始使用React Native来了解相关的设置操作。
首先创建个Android工程,结构如下图所示:


下面我们开始在这个原生android工程上进行改造,加入我们的ReactNative代码。

在android/app/build.gradle文件中,添加React Native依赖:

// From node_modules

compile"com.facebook.react:react-native:+"

然后在android/build.gradle文件中(注意跟上面的路径不同)加入本地React Native的maven目录(现在React Native的所有组件,无论JS还是Android的预编译包,都是通过npm分发的了):

allprojects {
repositories {
    ...
    maven {
        // All of React Native (JS, Android binaries) is installed from npm
        url "$rootDir/node_modules/react-native/android"
    }
}
...
}

最后在你的AndroidManifest.xml里增加Internet访问权限:

<uses-permission android:name="android.permission.INTERNET" />

添加原生代码

你需要添加一些原生代码来启动React Native运行库以及让它渲染出东西来。我们接下来创建一个Activity和一ReactRootView
,然后在里面启动一个React应用并把它设置为Activity的主要内容视图。

public class MainActivity extends AppCompatActivity implements DefaultHardwareBackBtnHandler {
private ReactRootView mReactRootView;
private ReactInstanceManager mReactInstanceManager;
@Override
protected void onCreate(Bundle savedInstanceState) {
    super.onCreate(savedInstanceState);
    mReactRootView = new ReactRootView(this);
    mReactInstanceManager = ReactInstanceManager.builder()
            .setApplication(getApplication())
            .setBundleAssetName("index.android.bundle")
            .setJSMainModuleName("index.android")
            .addPackage(new MainReactPackage())
            .setUseDeveloperSupport(BuildConfig.DEBUG)
            .setInitialLifecycleState(LifecycleState.RESUMED)
            .build();
    mReactRootView.startReactApplication(mReactInstanceManager, "HelloRn", null);
    setContentView(mReactRootView);
}}

接下来,我们需要传递一些Activity的生命周期事件到ReactInstanceManager

@Override
protected void onPause() {
    super.onPause();

    if (mReactInstanceManager != null) {
        mReactInstanceManager.onHostPause();
    }
}

@Override
protected void onResume() {
    super.onResume();

    if (mReactInstanceManager != null) {
        mReactInstanceManager.onHostResume(this, this);
    }
}

我们还需要把Back按钮事件传递给React native:

@Override
public void onBackPressed() {
    if (mReactInstanceManager != null) {
        mReactInstanceManager.onBackPressed();
    } else {
        super.onBackPressed();
    }
}

把JS代码添加到你的应用

在你的工程根目录,运行以下代码:

 $ npm init
 $ npm install --save react
 $ npm install --save react-native
 $ curl -o .flowconfig https://raw.githubusercontent.com/facebook/react-native/master/.flowconfig

上面的代码会创建一个node模块,然后react-native作为npm依赖添加。现在打开新创建的package.json文件然后在scripts字段下添加如下内容:

"start": "node node_modules/react-native/local-cli/cli.js start"

复制并粘贴下面的这段代码到你工程根目录下的index.android.js

 'use strict';
import React, { Component } from 'react';
import {
AppRegistry,
Text,
StyleSheet,
View,
} from 'react-native';
class HelloRn extends 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('HelloRn', () => HelloRn);

运行应用

为了运行应用,首先要启动开发服务器。只需要在你的工程目录下运行这段代码:
$ npm start
现在来构建和运行你的Android应用(譬如./gradlew installDebug
)。一旦启动了React Native制作的Activity,它应该会从开发服务器加载代码并显示:

661cbee9e9f91617aceab5e7a2fae49a.png

可能遇到的问题:

  1. Manifest merger failed : uses-sdk:minSdkVersion 15 cannot be smaller than version 16 declared in library [com.facebook.react:react-native:0.29.2]


    在mainfest配置如下参数即可:


  2. java.lang.UnsatisfiedLinkError: could find DSO to load: libreactnativejni.so


    在两处添加配置:
    app#build.gradle

    defaultConfig {
     //...
     ndk {
         abiFilters "armeabi-v7a", "x86"
       }
     }
    

gradle.properties
android.useDeprecatedNdk=true

3.报错信息如下:

Loading dependency graph, done.
error: bundling: UnableToResolveError: Unable to resolve module `react/lib/ReactDebugCurrentFrame` from `/Users/suwantao/AndroidStudioProjects/ReactNativeDemo/react_native/node_modules/react-native/Libraries/Renderer/src/renderers/shared/stack/reconciler/ReactCompositeComponent.js`: Module does not exist in the module map or in these directories:
  /Users/suwantao/AndroidStudioProjects/ReactNativeDemo/react_native/node_modules/react-native/node_modules/react/lib
,   /Users/suwantao/AndroidStudioProjects/ReactNativeDemo/react_native/node_modules/react/lib
,   /Users/suwantao/node_modules/react/lib

This might be related to https://github.com/facebook/react-native/issues/4968
To resolve try the following:
  1. Clear watchman watches: `watchman watch-del-all`.
  2. Delete the `node_modules` folder: `rm -rf node_modules && npm install`.
  3. Reset packager cache: `rm -fr $TMPDIR/react-*` or `npm start --reset-cache`.
    at UnableToResolveError (/Users/suwantao/AndroidStudioProjects/ReactNativeDemo/react_native/node_modules/react-native/packager/src/node-haste/DependencyGraph/ResolutionRequest.js:488:5)
    at p.catch.error (/Users/suwantao/AndroidStudioProjects/ReactNativeDemo/react_native/node_modules/react-native/packager/src/node-haste/DependencyGraph/ResolutionRequest.js:366:19)
    at process._tickCallback (internal/process/next_tick.js:103:7)
Bundling `index.android.js`  84.3% (349/380), failed.
Paste_Image.png

解决方案:添加 react-native-material-design
react-native-material-design依赖react-native-material-design-styles ,如果他的父类是个全局的模块,则不能被React Native's bundler打包。

参考The development server returned response error code: 500 in react native

执行npm install react-native-material-design 如果报错,

Paste_Image.png

根据提示,执行:npm install --save react@16.0.0-alpha.6
安装成功之后再次执行npm install react-native-material-design即可。
4.诡异的问题


image.png

解决方案:
app/build.gradle (将 'com.android.support:appcompat-v7:xx.x.x' 改为 'com.android.support:appcompat-v7:23.0.1')

5.undefined is not an object (evaluating ‘ReactInternals.ReactCurrentOwner’)

IMG_1603.JPG

解决方案:
参考:https://github.com/facebook/react-native/issues/13874
由于本地没安装yarm,无法直接调用 yarn add react@16.0.0-alpha.12在package.json手动填入"react": "16.0.0-alpha.12"也没解决问题。
最后通过一个热心网友解决了该问题。方案如下:
在项目根目录输入 npm install 然后 npm start ,问题完美解决。

最后编辑于
©著作权归作者所有,转载或内容合作请联系作者
  • 序言:七十年代末,一起剥皮案震惊了整个滨河市,随后出现的几起案子,更是在滨河造成了极大的恐慌,老刑警刘岩,带你破解...
    沈念sama阅读 204,590评论 6 478
  • 序言:滨河连续发生了三起死亡事件,死亡现场离奇诡异,居然都是意外死亡,警方通过查阅死者的电脑和手机,发现死者居然都...
    沈念sama阅读 86,808评论 2 381
  • 文/潘晓璐 我一进店门,熙熙楼的掌柜王于贵愁眉苦脸地迎上来,“玉大人,你说我怎么就摊上这事。” “怎么了?”我有些...
    开封第一讲书人阅读 151,151评论 0 337
  • 文/不坏的土叔 我叫张陵,是天一观的道长。 经常有香客问我,道长,这世上最难降的妖魔是什么? 我笑而不...
    开封第一讲书人阅读 54,779评论 1 277
  • 正文 为了忘掉前任,我火速办了婚礼,结果婚礼上,老公的妹妹穿的比我还像新娘。我一直安慰自己,他们只是感情好,可当我...
    茶点故事阅读 63,773评论 5 367
  • 文/花漫 我一把揭开白布。 她就那样静静地躺着,像睡着了一般。 火红的嫁衣衬着肌肤如雪。 梳的纹丝不乱的头发上,一...
    开封第一讲书人阅读 48,656评论 1 281
  • 那天,我揣着相机与录音,去河边找鬼。 笑死,一个胖子当着我的面吹牛,可吹牛的内容都是我干的。 我是一名探鬼主播,决...
    沈念sama阅读 38,022评论 3 398
  • 文/苍兰香墨 我猛地睁开眼,长吁一口气:“原来是场噩梦啊……” “哼!你这毒妇竟也来了?” 一声冷哼从身侧响起,我...
    开封第一讲书人阅读 36,678评论 0 258
  • 序言:老挝万荣一对情侣失踪,失踪者是张志新(化名)和其女友刘颖,没想到半个月后,有当地人在树林里发现了一具尸体,经...
    沈念sama阅读 41,038评论 1 299
  • 正文 独居荒郊野岭守林人离奇死亡,尸身上长有42处带血的脓包…… 初始之章·张勋 以下内容为张勋视角 年9月15日...
    茶点故事阅读 35,659评论 2 321
  • 正文 我和宋清朗相恋三年,在试婚纱的时候发现自己被绿了。 大学时的朋友给我发了我未婚夫和他白月光在一起吃饭的照片。...
    茶点故事阅读 37,756评论 1 330
  • 序言:一个原本活蹦乱跳的男人离奇死亡,死状恐怖,灵堂内的尸体忽然破棺而出,到底是诈尸还是另有隐情,我是刑警宁泽,带...
    沈念sama阅读 33,411评论 4 321
  • 正文 年R本政府宣布,位于F岛的核电站,受9级特大地震影响,放射性物质发生泄漏。R本人自食恶果不足惜,却给世界环境...
    茶点故事阅读 39,005评论 3 307
  • 文/蒙蒙 一、第九天 我趴在偏房一处隐蔽的房顶上张望。 院中可真热闹,春花似锦、人声如沸。这庄子的主人今日做“春日...
    开封第一讲书人阅读 29,973评论 0 19
  • 文/苍兰香墨 我抬头看了看天上的太阳。三九已至,却和暖如春,着一层夹袄步出监牢的瞬间,已是汗流浃背。 一阵脚步声响...
    开封第一讲书人阅读 31,203评论 1 260
  • 我被黑心中介骗来泰国打工, 没想到刚下飞机就差点儿被人妖公主榨干…… 1. 我叫王不留,地道东北人。 一个月前我还...
    沈念sama阅读 45,053评论 2 350
  • 正文 我出身青楼,却偏偏与公主长得像,于是被迫代替她去往敌国和亲。 传闻我的和亲对象是个残疾皇子,可洞房花烛夜当晚...
    茶点故事阅读 42,495评论 2 343

推荐阅读更多精彩内容

  • Android 自定义View的各种姿势1 Activity的显示之ViewRootImpl详解 Activity...
    passiontim阅读 171,439评论 25 707
  • afinalAfinal是一个android的ioc,orm框架 https://github.com/yangf...
    passiontim阅读 15,396评论 2 45
  • https://github.com/niyingxunzong/AndroidOpenSourceProject...
    奈何心善阅读 10,496评论 6 223
  • 迭代器模式: 提供一种方法顺序访问一个聚合对象中的各个元素,而又不暴露其内部的表示。 比如说,现在我们有两个聚合对...
    ghwaphon阅读 1,493评论 0 5
  • 2017.02.13 星期一 晴 开学第一天,今天作业少,孩子早早把作业做完,老师没布置的作业也提前做了。 这...
    漳州宸妈阅读 155评论 0 0