aboutsummaryrefslogtreecommitdiffstats
path: root/Software/Android_Studio/app/src/main/cpp/native-lib.cpp
diff options
context:
space:
mode:
authorRoy Ben-Shabat <Roy@Twine-s.com>2017-12-03 18:00:19 +0200
committerRoy Ben-Shabat <Roy@Twine-s.com>2017-12-03 18:00:19 +0200
commitf637e76b2557021217424c2944321029b6c50513 (patch)
treebb359cada5cb0b6ef9c3deda3a5762f9a474c989 /Software/Android_Studio/app/src/main/cpp/native-lib.cpp
parent57b770f73356e27a5f9189faf2f1953f6340430d (diff)
downloadTango-f637e76b2557021217424c2944321029b6c50513.tar.gz
Tango-f637e76b2557021217424c2944321029b6c50513.zip
Added code documentation to android project.
Removed all test modules except for UnitTesting module. Remote <-> Local DB synchronization works from android to WebAPI !
Diffstat (limited to 'Software/Android_Studio/app/src/main/cpp/native-lib.cpp')
-rw-r--r--Software/Android_Studio/app/src/main/cpp/native-lib.cpp13
1 files changed, 0 insertions, 13 deletions
diff --git a/Software/Android_Studio/app/src/main/cpp/native-lib.cpp b/Software/Android_Studio/app/src/main/cpp/native-lib.cpp
deleted file mode 100644
index fa595fbae..000000000
--- a/Software/Android_Studio/app/src/main/cpp/native-lib.cpp
+++ /dev/null
@@ -1,13 +0,0 @@
-#include <jni.h>
-#include <string>
-
-extern "C"
-JNIEXPORT jstring
-
-JNICALL
-Java_com_twine_tango_MainActivity_stringFromJNI(
- JNIEnv *env,
- jobject /* this */) {
- std::string hello = "Hello from C++";
- return env->NewStringUTF(hello.c_str());
-}