olm/android
Hubert Chathi c4d737c86c bump version numbers and update changelog 2020-10-06 17:39:48 -04:00
..
gradle/wrapper Upgrade tools 2018-06-27 14:00:20 -04:00
olm-sdk bump version numbers and update changelog 2020-10-06 17:39:48 -04: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
README.rst Move the android project from /Java/Android/OlmLibSdk 2017-01-10 16:06:21 +01:00
build.gradle Upgrade tools 2018-06-27 14:00:20 -04:00
gradle.properties Comment out proxy settings 2018-06-27 14:00:20 -04: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
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 wraper files.

The project contains some tests under AndroidTests package.