Fix launcher for android due to toolchain error
diff --git a/launcher/jvm_tooling.cpp b/launcher/jvm_tooling.cpp
index d93b323..1b0e500 100644
--- a/launcher/jvm_tooling.cpp
+++ b/launcher/jvm_tooling.cpp
@@ -67,6 +67,8 @@
   if (_NSGetExecutablePath(buf, &buf_size) != 0) {
 #elif defined(_WIN32)
   if (GetModuleFileNameA(NULL, buf, sizeof(buf)) == 0) {
+#elif defined(_ANDROID)
+  if (true) {
 #else  // Assume Linux
   if (readlink("/proc/self/exe", buf, sizeof(buf)) == -1) {
 #endif