olm/android
Hubert Chathi e5ed739436 this should fix CI 2021-11-24 15:50:11 +00:00
..
gradle/wrapper Update gradle wrapper and build tools 2021-04-16 21:08:55 +02:00
olm-sdk this should fix CI 2021-11-24 15:50:11 +00:00
.DS_Store Move the android project from /Java/Android/OlmLibSdk 2017-01-10 16:06:21 +01:00
.gitignore Improve .gitignore: exclude generated files for test 2018-06-27 14:00:20 -04:00
.gitlab-ci.yml this should fix CI 2021-11-24 15:50:11 +00:00
README.rst Update gradle wrapper and build tools 2021-04-16 21:08:55 +02:00
build.gradle Update gradle wrapper and build tools 2021-04-16 21:08:55 +02:00
gradle.properties publish to gitlab.matrix.org Maven repository 2021-11-24 15:50:11 +00:00
gradlew Move the android project from /Java/Android/OlmLibSdk 2017-01-10 16:06:21 +01:00
gradlew.bat Move the android project from /Java/Android/OlmLibSdk 2017-01-10 16:06:21 +01:00
jitpack.yml Fix issue with Jitpack build 2021-05-28 18:12:50 +02:00
settings.gradle Move the android project from /Java/Android/OlmLibSdk 2017-01-10 16:06:21 +01:00

README.rst

OlmLibSdk
=========

OlmLibSdk exposes an android wrapper to libolm.

Installation
------------
Create a libs directory in your project directory
Copy the olm-sdk.aar into it.

In your build.gradle file, add in the android section::

    repositories {
        flatDir {
            dir 'libs'
        }
    }

Add in the dependencies category::

    compile(name: 'olm-sdk', ext: 'aar')

Development
-----------
import the project from the ``android/`` path.

The project contains some JNI files and some Java wrapper files.

The project contains some tests under AndroidTests package.