Doc: use markup format for android build instructions.

This commit is contained in:
Kim Kulling 2016-02-02 10:52:28 +01:00
parent 59ece7b9fa
commit 72d720ecfb
1 changed files with 9 additions and 9 deletions

View File

@ -1,11 +1,11 @@
--- Description ---
This module provides a facade to io stream access to files
behind android asset manager within Android native application.
Build Asset Importer Lib for Android
====================================
This module provides a fascade for the io-stream-access to files behind the
android-asset-management within an Android native application.
- It is built as a static library
- It requires Android NDK with android API > 9 support.
--- Building ---
### Building ###
To use this module please provide following cmake defines:
@ -14,14 +14,14 @@ To use this module please provide following cmake defines:
"SOME_PATH" is a path to your cmake android toolchain script.
--- Code ---
### Code ###
A small example how to wrap assimp for Android:
```cpp
#include <assimp/port/AndroidJNI/AndroidJNIIOSystem.h>
...
Assimp::Importer* importer = new Assimp::Importer();
Assimp::AndroidJNIIOSystem* ioSystem = new Assimp::AndroidJNIIOSystem(app->activity);
importer->SetIOHandler(ioSystem);
...
```