Supported Server Versions: 4.0+
Supported iOS versions: 9.3+ Supported Android versions: 5.0+
Mattermost is an open source Slack-alternative used by thousands of companies around the world in 11 languages. Learn more at https://mattermost.com.
You can download our apps from the App Store or Google Play Store, or package them yourself.
We plan on releasing monthly updates with new features - check the changelog for what features are currently supported!
To help with testing app updates before they're released, you can:
- Sign up to be a beta tester
- Install the
Mattermost Beta
app - File any bugs you find by filing a GitHub issue with:
- Device information
- Repro steps
- Observed behavior (including screenshot / video when possible)
- Expected behavior
- (Optional) Sign up for our team site
- Join the Native Mobile Apps channel to see what's new and discuss feedback with other contributors and the core team
- Look in GitHub issues for issues marked as [Help Wanted]
- Comment to let people know you’re working on it
- Follow these instructions to set up your developer environment
- Join the Native Mobile Apps channel on our team site to ask questions
Follow the React Native Getting Started Guide for detailed instructions on setting up your local machine for development.
-
General requirements
- XCode 8.3
- Install required packages using homebrew:
$ brew install watchman $ brew install yarn
-
Clone repository and configure:
$ git clone [email protected]:mattermost/mattermost-mobile.git $ cd mattermost-mobile $ npm install $ npm install -g react-native-cli
-
Run application
$ make run
-
Stop the packager server
$ make stop
-
General requiriments:
- JDK 7 or greater
- Android SDK
- Virtualbox
- An Android emulator: Genymotion or Android emulator. If using genymotion ensure that it uses existing adb tools (Settings: "Use custom Android SDK Tools")
- Install watchman (do this globally):
Configure your kernel to accept a lot of file watches, using a command like:
$ git clone https://github.com/facebook/watchman.git $ cd watchman $ git checkout master $ ./autogen.sh $ ./configure $ make $ sudo make install
$ sudo sysctl -w fs.inotify.max_user_watches=1048576
-
Clone repository and configure:
$ git clone [email protected]:mattermost/mattermost-mobile.git $ cd mattermost-mobile $ npm install $ npm install -g react-native-cli
-
You can create a file named
assets/override/config.json
and add the url to the Mattermost server that you will use to develop:{ "DefaultServerUrl": "https://pre-release.mattermost.com" }
To use a local Mattermost server you will need to configure the "DefaultServerUrl" depending on the emulator you will use:
- IOs: "DefaultServerUrl": "http://localhost:8065"
- Android: "DefaultServerUrl": "http://10.0.2.2:3000"
- Genymotion: "DefaultServerUrl": "http://10.0.3.2:8065"
-
-
Run application
- Start emulator
- Start react packager:
$ react-native start
- Run in emulator:
$ react-native run-android
App data is wiped from the device when a user logs out of the app. If the user is logged in when the account is deactivated, then within one minute the system logs the user out, and as a result all app data is wiped from the device.
At the moment, we only support connecting to one server at a time. If you need to connect to multiple servers, please upvote the feature request so we can track demand for it.
As a work around, you can install both the released "Mattermost" app and sign up to be a tester for the "Mattermost Beta" app so you can connect to two servers at once.
We plan to add support for tablets in the future, but the timeline depends on how many people have a need for it. If you're looking for a tablet version, please help us out by upvoting the feature request!
I keep getting a message "Cannot connect to the server. Please check your server URL and internet connection."
This sometimes appears when there is an issue with the SSL certitificate configuration.
To check that your SSL certificate is set up correctly, test the SSL certificate by visiting a site such as https://www.ssllabs.com/ssltest/index.html. If there’s an error about the missing chain or certificate path, there is likely an intermediate certificate missing that needs to be included.
Please note that the apps cannot connect to servers with self-signed certificates, consider using Let's Encrypt instead.
If your app is working properly, you should see a grey “Connecting…” bar that clears or says “Connected” after the app reconnects.
If you are seeing this message all the time, and your internet connection seems fine:
Ask your server administrator if the server uses NGINX or another webserver as a reverse proxy. If so, they should check that it is configured correctly for supporting the websocket connection for APIv4 endpoints.
That command is an internal pipeline command for mattermost mobile to publish the mobile apps to Apple App Store
and Google Play Store
. All make build-*
commands should be avoided for this reason.
To build the modified react native client use the instructions for Running on Device from the React Native Guide.