Skip to content

Commit

Permalink
v4.3.0
Browse files Browse the repository at this point in the history
  • Loading branch information
rohitninawe-cometchat committed Jun 4, 2024
1 parent 23f7b2f commit 7ed4095
Show file tree
Hide file tree
Showing 198 changed files with 10,251 additions and 1,006 deletions.
6 changes: 3 additions & 3 deletions README.md
Original file line number Diff line number Diff line change
Expand Up @@ -11,7 +11,7 @@

[![Platform](https://img.shields.io/badge/Platform-ReactNative-brightgreen.svg)](#)
[![Platform](https://img.shields.io/badge/Language-TypeScript-yellowgreen.svg)](#)
![Version](https://shields.io/badge/version-v4.1.4-orange)
![Version](https://shields.io/badge/version-v4.3.0-orange)
![Twitter Follow](https://img.shields.io/twitter/follow/cometchat?style=social)

## Table of contents
Expand All @@ -34,7 +34,7 @@ CometChat React Native UIKit provides pre-built user interface kit that develope
- @react-native-community/datetimepicker
- @react-native-community/async-storage
- @cometchat/chat-sdk-react-native
- @react-native-community/clipboard
- @react-native-clipboard/clipboard

## Getting Started
To set up React Native Chat UIKit and utilize CometChat for your chat functionality, you'll need to follow these steps:
Expand All @@ -49,7 +49,7 @@ To utilize the React Native Chat UIKit in your React native project, you need to
@react-native-community/datetimepicker <br/>
@react-native-community/async-storage <br/>
@cometchat/chat-sdk-react-native <br/>
@react-native-community/clipboard <br />
@react-native-clipboard/clipboard <br />


## Versioning
Expand Down
Original file line number Diff line number Diff line change
Expand Up @@ -8,6 +8,7 @@
import com.facebook.react.uimanager.ViewManager;

import java.util.ArrayList;
import java.util.Arrays;
import java.util.Collections;
import java.util.List;

Expand All @@ -30,6 +31,6 @@ public List<NativeModule> createNativeModules(@NonNull ReactApplicationContext r
@NonNull
@Override
public List<ViewManager> createViewManagers(@NonNull ReactApplicationContext reactContext) {
return Collections.emptyList();
return Arrays.<ViewManager>asList(new ReactVideoViewManager());
}
}
Loading

0 comments on commit 7ed4095

Please sign in to comment.