Skip to content

Commit 8547ca2

Browse files
committed
fix crash
1 parent 375a05d commit 8547ca2

3 files changed

Lines changed: 3 additions & 2 deletions

File tree

pythonforandroid/bootstraps/qt6/build/src/main/java/org/kivy/android/PythonActivityInit.java

Lines changed: 1 addition & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -84,5 +84,6 @@ public void setContext(Context context) {
8484

8585
Log.v(TAG, "Setting env vars for Qt");
8686
PythonActivity.nativeSetenv("QT_QUICK_CONTROLS_STYLE", "Material");
87+
PythonActivity.nativeSetenv("QT_ANDROID_DISABLE_ACCESSIBILITY", "1");
8788
}
8889
}

pythonforandroid/recipes/pyqt6/__init__.py

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -10,7 +10,7 @@
1010

1111

1212
class PyQt6Recipe(PyProjectRecipe):
13-
version = '6.10.1'
13+
version = '6.10.2'
1414
url = "https://pypi.python.org/packages/source/P/PyQt6/pyqt6-{version}.tar.gz"
1515
name = 'pyqt6'
1616

pythonforandroid/recipes/qt6/__init__.py

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -7,7 +7,7 @@
77

88
class Qt6Recipe(BootstrapNDKRecipe):
99
name = 'qt6'
10-
version = '6.10.1'
10+
version = '6.10.2'
1111
url = 'https://download.qt.io/archive/qt/6.10/{version}/single/qt-everywhere-src-{version}.tar.xz'
1212
dir_name = 'qt6'
1313

0 commit comments

Comments
 (0)