wireapp / kalium

🍌 An SDK for creating Wire clients on Android and JVM. Expanding to iOS and Web.

Home Page:https://wireapp.github.io/kalium/

Geek Repo:Geek Repo

Github PK Tool:Github PK Tool

Kalium Logo

Kalium

JVM & JS Tests codecov

How to build

Dependencies

Supported Platforms

  • Android (see the Android module)
  • JVM (see the cli module)
  • iOS (partially)
  • JavaScript (just a tiny bit)

The cli can be executed on the terminal of any machine that satisfies the dependencies mentioned above, and is capable of actions like:

  • Logging in
  • Create a group conversation
  • Add user to group conversation
  • Receive and send text messages in real time
  • Remove another client from your account remotely
  • Refill MSL key packages

Building dependencies on macOS 12

Just run make, which will download and compile dependencies listed above from source, the output will be $PROJECT_ROOT$/native/libs

Running on your machine

When running any tasks that require the native libraries (libsodium, cryptobox-c and cryptobox4j), you need to pass their location as VM options like so:

-Djava.library.path=./path/to/native/libraries/mentioned/before

For example, if you want to run the task jvmTest and the libraries are in ./native/libs:

./gradlew jvmTest -Djava.library.path=./native/libs

Running the CLI

JVM

Run the following with the native libs in the classpath (-Djava.library.path=/usr/local/lib/:./native/libs):

./gradlew :cli:assemble
java -Djava.library.path=/usr/local/lib/:./native/libs -jar cli/build/libs/cli.jar login 

or if you want the jar file deleted after your run:

./gradlew :cli:run --args="login" -Djava.library.path=/usr/local/lib/:./native/libs
Native (Mac)

For running on arm64 mac

./gradlew :cli:macosArm64Binaries
./cli/build/bin/macosArm64/debugExecutable/cli.kexe login

For running on intel mac

./gradlew :cli:macosX64Binaries
./cli/build/bin/macosX64/debugExecutable/cli.kexe login

Detekt rules

We use and try to maintain our codestyle uniformed, so apart from having our checks in place in our CI. You can have live feedback using the IDE, here is how:

  1. IntelliJ -> Settings -> Plugins -> Marketplace -> Search and install "Detekt"

  2. Settings -> Tools -> Detekt -> set: (replace $PROJECT_ROOT accordingly to your machine)

    • Configuration Files: $PROJECT_ROOT/detekt/detekt.yml
    • Baseline File: $PROJECT_ROOT/detekt/baseline.yml (optional)
    • Plugin Jars: $PROJECT_ROOT/detekt-rules/build/libs/detekt-rules.jar (this will add our custom rules to provide live feedback)

or

You can run locally in your terminal:

./gradlew clean detekt

Logo

The logo is adapted from OpenMoji – the open-source emoji and icon project. License: CC BY-SA 4.0

About

🍌 An SDK for creating Wire clients on Android and JVM. Expanding to iOS and Web.

https://wireapp.github.io/kalium/

License:GNU General Public License v3.0


Languages

Language:Kotlin 99.8%Language:C++ 0.1%Language:Makefile 0.1%Language:C 0.0%Language:Shell 0.0%Language:JavaScript 0.0%Language:Dockerfile 0.0%