kChat is a fork of Mattermost mobile adapted for use within the Infomaniak ecosystem.
- Minimum Server versions: Current ESR version (9.5.0+)
- Supported iOS versions: 13.4+
- Supported Android versions: 7.0+
While the mobile app is a fork of Mattermost, the back-end is custom made and entierely developped by Infomaniak.
The kChat app requires an Infomaniak account with kSuite. It enables you to communicate live with your teams and organise your projects within a unified communication platform.
- Install brew on your machine
- Install open jdk (see instructions in the following section)
- Install a ruby version manager such as rbenv (https://formulae.brew.sh/formula/rbenv) or rvm (https://rvm.io/)
- Make sure that xcode & xcode command line tools is installed and up to date.
- Android studio must be installed & configured
- Make sure to install cocoapods package installed using
brew install cocoapods
- Whitelist this path
/Users/{username}/Library/Developer/Xcode/DerivedData
within your simulator to avoid simulator errors
- Run the command
brew install openjdk@17
- Then run those commands to update your PATH :
sudo ln -sfn /opt/homebrew/opt/openjdk@17/libexec/openjdk.jdk /Library/Java/JavaVirtualMachines/openjdk-17.jdk # Create a symlink so that your java wrappers can find this jdk
echo 'export PATH="/opt/homebrew/opt/openjdk@17/bin:$PATH"' >> ~/.zshrc
export CPPFLAGS="-I/opt/homebrew/opt/openjdk@17/include"
- Install the right node version using
nvm install
command ornvm use
if already installed - Run the command
npm install
(This will install node_modules & pods) - Run
npm run build:ios-sim
to launch your app
- To avoid errors related to the Infomaniak font, you can run the shell command
npm run font-download
- Run
npm start
If this error occur, make sure that android studio has been completely installed and that those following lines are set within your .zprofile
:
export ANDROID_HOME="/Users/<username>/Library/Android/sdk"
export PATH=$PATH:$ANDROID_HOME/platform-tools
export PATH=$PATH:$ANDROID_HOME/tools
export PATH=$PATH:$ANDROID_HOME/tools/bin
export PATH=$PATH:$ANDROID_HOME/emulator
git config --global user.email johndoe@example.com
brew install watchman
Open xcode and select Xcode > Settings > Locations
and make sure that the dropdown "command line tools" is correctly set.
Install Ruby by running PKG_CONFIG_PATH=/opt/homebrew/opt/openssl@1.1/lib/pkgconfig rvm reinstall 3.0.6 --with-openssl-lib=/opt/homebrew/opt/openssl@1.1 --with-openssl-include=/opt/homebrew/opt/openssl@1.1
If you wish to contribute code to the Mattermost base repository to fix issues or add new features, follow these steps:
Before you begin, ensure you have:
- A valid GitHub account.
- Been added to the Infomaniak GitHub group.
-
First, add two remote repositories to your local GitHub folder using the following commands:
git remote add upstream https://github.com/mattermost/mattermost-mobile.git
(used to pull the latest changes from upstream)git remote add fork https://github.com/Infomaniak/mobile-kchat.git
(used to create the PR onto upstream)
-
Next, pull the main upstream branch to ensure you have the latest changes from upstream.
-
Once you have cloned the upstream branch in your projects, switch to this branch using
git checkout {name of the branch}
. -
Create your own local branch from the upstream branch using
git checkout -b {name of the branch}
. -
After applying your changes, push them to the remote fork to create a PR on Mattermost using
git push fork {name of the branch}
. -
Follow the PR instructions to provide Mattermost with the necessary information to review your code thoroughly.