Update the readme files.

release-v2.2.0
ylecollen 2016-12-20 10:42:06 +01:00
parent 2fab6f946e
commit c553d18a9a
2 changed files with 32 additions and 0 deletions

View File

@ -32,6 +32,12 @@ To build the javascript bindings, install emscripten from http://kripken.github.
.. code:: bash
make js
To build the android project for Android bindings, run:
.. code:: bash
cd java/android/OlmLibSdk/OlmLibSdk
./gradlew clean assembleRelease
Release process
---------------

View File

@ -0,0 +1,26 @@
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 /java/android/OlmLibSdk path.
The project contains some JNI files and some Java wraper files.
The project contains some tests under AndroidTests package.