0

我正在尝试按照此说明将我的 react 本机应用程序与 smooch.io 集成。我已成功安装模块并配置 MainApplication.java。现在我在尝试显示对话屏幕时遇到问题。我应该把Smooch.show()我的反应原生应用程序放在哪里?这是我的 index.android.js

import React, { Component } from 'react';
import {
  AppRegistry,
  StyleSheet,
  View
} from 'react-native';

import Smooch from 'react-native-smooch';

export default class SmoochTest extends Component {
  componentDidMount() {
    Smooch.show();
  }

  render() {
    return (
      <View style={styles.container}>

      </View>
    );
  }
}

const styles = StyleSheet.create({
  // some style
});

AppRegistry.registerComponent('SmoochTest', () => SmoochTest);
4

1 回答 1

0

我遇到了类似的问题-您链接了吗?react-native link react-native-smooch. 这为我解决了它。

于 2017-07-18T16:06:46.727 回答