olm/android
Sophie Taylor 7b937236ae Fixing Android.mk
Signed-off-by: Sophie Taylor <sophie@spacekitteh.moe>
2017-03-06 14:12:57 +00:00
..
gradle/wrapper Move the android project from /Java/Android/OlmLibSdk 2017-01-10 16:06:21 +01:00
olm-sdk Fixing Android.mk 2017-03-06 14:12:57 +00:00
.DS_Store Move the android project from /Java/Android/OlmLibSdk 2017-01-10 16:06:21 +01:00
README.rst Move the android project from /Java/Android/OlmLibSdk 2017-01-10 16:06:21 +01:00
build.gradle Move the android project from /Java/Android/OlmLibSdk 2017-01-10 16:06:21 +01:00
gradle.properties Move the android project from /Java/Android/OlmLibSdk 2017-01-10 16:06:21 +01: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.