1.0.7 • Published 5 years ago
react-native-chat-imui v1.0.7
react-native-chat-imui
Getting started
$ npm install react-native-chat-imui --save
Mostly automatic installation
$ react-native link react-native-chat-imui
Manual installation
iOS
- In XCode, in the project navigator, right click
Libraries➜Add Files to [your project's name] - Go to
node_modules➜react-native-chat-imuiand addRNChatImui.xcodeproj - In XCode, in the project navigator, select your project. Add
libRNChatImui.ato your project'sBuild Phases➜Link Binary With Libraries - Run your project (
Cmd+R)<
Android
- Open up
android/app/src/main/java/[...]/MainApplication.java
- Add
import cn.jiguang.imui.messagelist.ReactIMUIPackage;to the imports at the top of the file - Add
new ReactIMUIPackage()to the list returned by thegetPackages()method
- Append the following lines to
android/settings.gradle:include ':react-native-chat-imui' project(':react-native-chat-imui').projectDir = new File(rootProject.projectDir, '../node_modules/react-native-chat-imui/ReactNative/android') - Insert the following lines inside the dependencies block in
android/app/build.gradle:compile project(':react-native-chat-imui')
Windows
- In Visual Studio add the
RNChatImui.slninnode_modules/react-native-chat-imui/windows/RNChatImui.slnfolder to their solution, reference from their app. - Open up your
MainPage.csapp
- Add
using Chat.Imui.RNChatImui;to the usings at the top of the file - Add
new RNChatImuiPackage()to theList<IReactPackage>returned by thePackagesmethod
Usage
import RNChatImui from 'react-native-chat-imui';
// TODO: What to do with the module?
RNChatImui;