| 57 | } |
| 58 | |
| 59 | static void handleMessageFromActivity(JNIEnv *, jobject, jint what, jint arg1, jint arg2, jstring str) |
| 60 | { |
| 61 | appServiceObjectForJava->handleMessageFromActivity(static_cast<ServiceAction>(what), arg1, arg2, QJniObject(str).toString()); |
| 62 | } |
| 63 | |
| 64 | static void handleAndroidIntent(JNIEnv *, jobject, jstring page, jboolean fromNotification) |
| 65 | { |
nothing calls this directly
no test coverage detected