我正在尝试将此反应原生应用与smooch.io集成在instructions之后。我已成功安装模块并配置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);
答案 0 :(得分:0)
我遇到了类似的问题 - 你链接了吗? react-native link react-native-smooch
。这解决了我。