Skip to content
Snippets Groups Projects
To learn more about this project, read the wiki.

Rocket.Chat React Native Mobile

Project Dependencies Codacy Badge codecov CodeFactor

Supported Server Versions: 0.70.0+

Download

Download on Google Play Download on App Store

Beta Access

TestFlight

You can signup to our TestFlight builds by acessing this link: https://testflight.apple.com/join/7I3dLCNT.

Google Play beta

You can subscribe to Google Play Beta program and download latest versions: https://play.google.com/store/apps/details?id=chat.rocket.reactnative

Reporting an Issue

Github Issues are used to track todos, bugs, feature requests, and more.

Also check the #react-native community on open.rocket.chat. We'd like to help.

Installing dependencies

Follow the React Native Getting Started Guide for detailed instructions on setting up your local machine for development.

How to run

  • Clone repository and install dependencies:

    $ git clone git@github.com:RocketChat/Rocket.Chat.ReactNative.git
    $ cd Rocket.Chat.ReactNative
    $ yarn global add react-native-cli
    $ yarn
  • Run application

    $ react-native run-ios
    $ react-native run-android

Running single server

If you don't need multiple servers, there is a branch single-server just for that. Readme will guide you on how to config.

Current priorities

  1. Jitsi integration
  2. Notification Preferences
  3. Two-way authentication
  4. Bugsnag
  5. Optional Analytics
  6. Typescript
  7. Prettier

Features

Feature Status
Jitsi Integration :x:
Federation (Directory) :white_check_mark:
Discussions :x:
Threads :white_check_mark:
Record Audio :white_check_mark:
Record Video :white_check_mark:
Commands :white_check_mark:
Draft message per room :white_check_mark:
Share Extension :white_check_mark:
Notifications Preferences :white_check_mark:
Edited status :white_check_mark:
Upload video :white_check_mark:
Grouped messages :white_check_mark:
Mark room as read :white_check_mark:
Mark room as unread :white_check_mark:
Tablet Support :x:
Read receipt :white_check_mark:
Broadbast Channel :white_check_mark:
Authentication via SAML :white_check_mark:
Authentication via CAS :white_check_mark:
Custom Fields on Signup :white_check_mark:
Report message :white_check_mark:
Theming :x:
Settings -> Review the App :x:
Settings -> Default Browser :x:
Admin panel :white_check_mark:
Reply message from notification :x:
Unread counter banner on message list :white_check_mark:
E2E Encryption :x:
Join a Protected Room :x:
Optional Analytics :x:
Settings -> About us :x:
Settings -> Contact us :white_check_mark:
Settings -> Update App Icon :x:
Settings -> Share :x:
Accessibility (Medium) :x:
Accessibility (Advanced) :x:
Authentication via Meteor :x:
Authentication via Wordpress :x:
Authentication via Custom OAuth :white_check_mark:
Add user to the room :white_check_mark:
Send message :white_check_mark:
Authentication via Email :white_check_mark:
Authentication via Username :white_check_mark:
Authentication via LDAP :white_check_mark:
Message format: Markdown :white_check_mark:
Message format: System messages (Welcome, Message removed...) :white_check_mark:
Message format: links :white_check_mark:
Message format: images :white_check_mark:
Message format: replies :white_check_mark:
Message format: alias with custom message (title & text) :white_check_mark:
Messages list: day separation :white_check_mark:
Messages list: load more on scroll :white_check_mark:
Messages list: receive new messages via subscription :white_check_mark:
Subscriptions list :white_check_mark:
Segmented subscriptions list: Favorites :white_check_mark:
Segmented subscriptions list: Unreads :white_check_mark:
Segmented subscriptions list: DMs :white_check_mark:
Segmented subscriptions list: Channels :white_check_mark:
Subscriptions list: update user status via subscription :white_check_mark:
Numbers os messages unread in the Subscriptions list :white_check_mark:
Status change :white_check_mark:
Upload image :white_check_mark:
Take picture & upload it :white_check_mark:
2FA :white_check_mark:
Signup :white_check_mark:
Autocomplete with usernames :white_check_mark:
Autocomplete with @all & @here :white_check_mark:
Autocomplete room/channel name :white_check_mark:
Upload audio :white_check_mark:
Forgot your password :white_check_mark:
Login screen: terms of service :white_check_mark:
Login screen: privacy policy :white_check_mark:
Authentication via Google :white_check_mark:
Authentication via Facebook :white_check_mark:
Authentication via Twitter :white_check_mark:
Authentication via GitHub :white_check_mark:
Authentication via GitLab :white_check_mark:
Authentication via LinkedIn :white_check_mark:
Create channel :white_check_mark:
Search Local :white_check_mark:
Search in the API :white_check_mark:
Settings -> License :white_check_mark:
Settings -> App version :white_check_mark:
Autocomplete emoji :white_check_mark:
Upload file (documents, PDFs, spreadsheets, zip files, etc) :white_check_mark:
Copy message :white_check_mark:
Pin message :white_check_mark:
Unpin message :white_check_mark:
Channel Info screen -> Members :white_check_mark:
Channel Info screen -> Pinned :white_check_mark:
Channel Info screen -> Starred :white_check_mark:
Channel Info screen -> Uploads :white_check_mark:
Star message :white_check_mark:
Unstar message :white_check_mark:
Channel Info screen -> Topic :white_check_mark:
Channel Info screen -> Description :white_check_mark:
Star a channel :white_check_mark:
Message format: videos :white_check_mark:
Message format: audios :white_check_mark:
Edit message :white_check_mark:
Delete a message :white_check_mark:
Reply message :white_check_mark:
Quote message :white_check_mark:
Muted state :white_check_mark:
Offline reading :white_check_mark:
Offline writing :white_check_mark:
Edit profile :white_check_mark:
Reactions :white_check_mark:
Custom emojis :white_check_mark:
Accessibility (Basic) :white_check_mark:
Tap notification, go to the channel :white_check_mark:
Deep links: Authentication :white_check_mark:
Deep links: Rooms :white_check_mark:
Full name setting :white_check_mark:
Read only rooms :white_check_mark:
Typing status :white_check_mark:
Create channel/group :white_check_mark:
Disable registration setting :white_check_mark:
Unread red line indicator on message list :white_check_mark:
Search Messages in Channel :white_check_mark:
Mentions List :white_check_mark:
Attachment List :white_check_mark:
Join a Room :white_check_mark:

Detox (end-to-end tests)

  • Build your app
$ detox build --configuration ios.sim.release
  • Run tests
$ detox test --configuration ios.sim.release

Storybook

  • Open index.js

  • Uncomment following line

import './storybook';
  • Comment out following lines
import './app/ReactotronConfig';
import { AppRegistry } from 'react-native';
import App from './app/index';
import { name as appName } from './app.json';

AppRegistry.registerComponent(appName, () => App);
  • Start your application again