aboutsummaryrefslogtreecommitdiffstats
path: root/Software/Android_Studio/Tango.BL/src/main/cpp/native-lib.cpp
diff options
context:
space:
mode:
Diffstat (limited to 'Software/Android_Studio/Tango.BL/src/main/cpp/native-lib.cpp')
-rw-r--r--Software/Android_Studio/Tango.BL/src/main/cpp/native-lib.cpp18
1 files changed, 0 insertions, 18 deletions
diff --git a/Software/Android_Studio/Tango.BL/src/main/cpp/native-lib.cpp b/Software/Android_Studio/Tango.BL/src/main/cpp/native-lib.cpp
deleted file mode 100644
index c7317d615..000000000
--- a/Software/Android_Studio/Tango.BL/src/main/cpp/native-lib.cpp
+++ /dev/null
@@ -1,18 +0,0 @@
-#include <jni.h>
-#include <string>
-#include "OtherClass.h"
-
-extern "C"
-JNIEXPORT jstring
-
-JNICALL
-Java_com_twine_tango_bl_Example_getString(
- JNIEnv *env,
- jobject /* this */)
-{
-
- OtherClass c;
-
- std::string hello = "Hello from C++" + c.getString(" Some String");
- return env->NewStringUTF(hello.c_str());
-}