├── .tag └── README.md /.tag: -------------------------------------------------------------------------------- 1 | ae24e41ad4da78b029fd42ea317e4d2be73b015e 2 | -------------------------------------------------------------------------------- /README.md: -------------------------------------------------------------------------------- 1 | # QtAndroidExtras 2 | 3 | **The QtAndroidExtras module has been deprecated and is no longer part of Qt.** 4 | 5 | The functionality of the module has been incorporated into other parts of Qt, or in some cases removed due to being obsolete or better suited as cross platform APIs. 6 | 7 | For more details, see [QTBUG-84382](https://bugreports.qt.io/browse/QTBUG-84382) in the Qt issue tracker. 8 | 9 | ## Porting away from QtAndroidExtras 10 | 11 | To learn more about how to port from QtAndroidExtras to alternative APIs please visit the [Qt 6 porting guide](https://doc.qt.io/qt-6/portingguide.html). 12 | 13 | ## Working on Qt 5 14 | 15 | To work on patches for the Qt 5 series, check out a local branch of the relevant Qt version, e.g.: 16 | 17 | ```bash 18 | $ git checkout 5.15 19 | Branch '5.15' set up to track remote branch '5.15' from 'origin' by rebasing. 20 | Switched to a new branch '5.15' 21 | ``` 22 | 23 | ## Going back in time 24 | 25 | To inspect the code in the `dev` branch prior to its removal, follow these steps: 26 | 27 | ```bash 28 | $ git checkout -b my-dev dev~1 29 | Switched to a new branch 'my-dev' 30 | ``` 31 | --------------------------------------------------------------------------------