Android: move JNI C++ utils into a common folder.

No need for a proper library, this is just a common location to simplify
JNI bindings in other projects like filamat and gltfio.

There is no need to move the one Java source file (`NioUtils.java`)
since downstream libraries will have a dependency on Filament, and
FindClass should work fine.
This commit is contained in:
Philip Rideout
2019-06-14 13:29:31 -07:00
parent 77d058cf76
commit 94b4f92bc5
14 changed files with 27 additions and 26 deletions

View File

@@ -18,7 +18,7 @@
#include <jni.h>
#include <filament/RenderableManager.h>
#include "NioUtils.h"
#include "common/NioUtils.h"
using namespace filament;
using namespace utils;