| 51 | } |
| 52 | |
| 53 | static void handleLauncherStatusBroadcast(JNIEnv *, jobject, jobject intent) |
| 54 | { |
| 55 | const auto status = QAndroidIntent(QJniObject(intent)).extraVariant(QStringLiteral("status")); |
| 56 | QMetaObject::invokeMethod(appObjectForJava, "handleLauncherStatusBroadcast", Qt::QueuedConnection, Q_ARG(QVariant, status)); |
| 57 | } |
| 58 | |
| 59 | static void handleMessageFromActivity(JNIEnv *, jobject, jint what, jint arg1, jint arg2, jstring str) |
| 60 | { |
nothing calls this directly
no outgoing calls
no test coverage detected