Doc: use markup format for android build instructions.

pull/779/head
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 --- Build Asset Importer Lib for Android
====================================
This module provides a facade to io stream access to files This module provides a fascade for the io-stream-access to files behind the
behind android asset manager within Android native application. android-asset-management within an Android native application.
- It is built as a static library - It is built as a static library
- It requires Android NDK with android API > 9 support. - It requires Android NDK with android API > 9 support.
--- Building --- ### Building ###
To use this module please provide following cmake defines: 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. "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> #include <assimp/port/AndroidJNI/AndroidJNIIOSystem.h>
...
Assimp::Importer* importer = new Assimp::Importer(); Assimp::Importer* importer = new Assimp::Importer();
Assimp::AndroidJNIIOSystem* ioSystem = new Assimp::AndroidJNIIOSystem(app->activity); Assimp::AndroidJNIIOSystem* ioSystem = new Assimp::AndroidJNIIOSystem(app->activity);
importer->SetIOHandler(ioSystem); importer->SetIOHandler(ioSystem);
... ```