olm/java/android/OlmLibSdk/README.rst

26 lines
605 B
ReStructuredText
Raw Normal View History

2016-12-20 10:42:06 +01:00
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 {
2017-01-02 14:04:53 +01:00
flatDir {
2016-12-20 10:42:06 +01:00
dir 'libs'
2017-01-02 14:04:53 +01:00
}
}
2016-12-20 10:42:06 +01:00
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.