You can not select more than 25 topics
Topics must start with a letter or number, can include dashes ('-') and can be up to 35 characters long.
18 lines
576 B
18 lines
576 B
--- old/qtbase/src/plugins/platforms/android/androidjnimain.cpp |
|
+++ new/qtbase/src/plugins/platforms/android/androidjnimain.cpp |
|
@@ -898,6 +898,14 @@ |
|
__android_log_print(ANDROID_LOG_FATAL, "Qt", "registerNatives failed"); |
|
return -1; |
|
} |
|
+ |
|
+ const jint ret = QT_PREPEND_NAMESPACE(QtAndroidPrivate::initJNI(vm, env)); |
|
+ if (ret != 0) |
|
+ { |
|
+ __android_log_print(ANDROID_LOG_FATAL, "Qt", "initJNI failed"); |
|
+ return ret; |
|
+ } |
|
+ |
|
QWindowSystemInterfacePrivate::TabletEvent::setPlatformSynthesizesMouse(false); |
|
|
|
m_javaVM = vm; |
|
|
|
|