Update the readme files.
This commit is contained in:
parent
2fab6f946e
commit
c553d18a9a
2 changed files with 32 additions and 0 deletions
|
@ -32,6 +32,12 @@ To build the javascript bindings, install emscripten from http://kripken.github.
|
||||||
.. code:: bash
|
.. code:: bash
|
||||||
|
|
||||||
make js
|
make js
|
||||||
|
|
||||||
|
To build the android project for Android bindings, run:
|
||||||
|
|
||||||
|
.. code:: bash
|
||||||
|
cd java/android/OlmLibSdk/OlmLibSdk
|
||||||
|
./gradlew clean assembleRelease
|
||||||
|
|
||||||
Release process
|
Release process
|
||||||
---------------
|
---------------
|
||||||
|
|
26
java/android/OlmLibSdk/README.rst
Normal file
26
java/android/OlmLibSdk/README.rst
Normal 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.
|
Loading…
Reference in a new issue