summaryrefslogtreecommitdiff
path: root/platform/android/src/java_types.hpp
diff options
context:
space:
mode:
Diffstat (limited to 'platform/android/src/java_types.hpp')
-rw-r--r--platform/android/src/java_types.hpp43
1 files changed, 0 insertions, 43 deletions
diff --git a/platform/android/src/java_types.hpp b/platform/android/src/java_types.hpp
deleted file mode 100644
index c7c93ce71b..0000000000
--- a/platform/android/src/java_types.hpp
+++ /dev/null
@@ -1,43 +0,0 @@
-#pragma once
-
-#include <jni/jni.hpp>
-
-namespace mbgl {
-namespace android {
-namespace java {
-
- struct ObjectArray {
- static jni::jclass* jclass;
- };
-
- struct String {
- static jni::jclass* jclass;
- };
-
- struct Boolean {
- static jni::jclass* jclass;
- static jni::jmethodID* booleanValueMethodId;
- };
-
- struct Number {
- static jni::jclass* jclass;
- static jni::jmethodID* floatValueMethodId;
- static jni::jmethodID* doubleValueMethodId;
- static jni::jmethodID* longValueMethodId;
- };
-
- struct Map {
- static jni::jclass* jclass;
- static jni::jmethodID* getMethodId;
- static jni::jmethodID* keySetMethodId;
- };
-
- struct Set {
- static jni::jclass* jclass;
- static jni::jmethodID* toArrayMethodId;
- };
-
- void registerNatives(JNIEnv&);
-}
-}
-}