MainWindow updates for Android and example configurations#1542
Merged
f4exb merged 6 commits intof4exb:masterfrom Dec 21, 2022
Merged
MainWindow updates for Android and example configurations#1542f4exb merged 6 commits intof4exb:masterfrom
f4exb merged 6 commits intof4exb:masterfrom
Conversation
(Possibly need to add a mutex for MainCore::getPluginManager, so only can be used by one thread) Add option to automatically update My Position based on GPS. This is started in MainCore, so we get position as soon as possible. Don't set QFileDialog::DontUseNativeDialog on Android, as Qt's file dialog can't access user storage. Set globally for Linux/Windows, rather than for each dialog. MainWindow: - Add welcome dialog for Android. - Don't show menu bar or status bar on Android to save screen space. - On Android, change tab position when screen orientation changes. - Load default configurations and presets first time SDRangel is run. - Change loadConfiguration to use a QProgressDialog rather than QMessageBox, as the latter was crashing on Android. - Use DialogPositioner to ensure dialogs are on screen.
Owner
|
So is it now possible to generate an .apk for Android? I suppose one needs to set up a special environment for this (cross compiler at least). Are there or will there be instructions to do this? |
Collaborator
Author
|
Need a few more patches. Also need built libraries and I had to build a custom version of Qt in order to fix a couple of bugs. Yep, you will need a cross compiler. Will add some instructions eventually. |
This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Sign up for free
to join this conversation on GitHub.
Already have an account?
Sign in to comment
Add this suggestion to a batch that can be applied as a single commit.This suggestion is invalid because no changes were made to the code.Suggestions cannot be applied while the pull request is closed.Suggestions cannot be applied while viewing a subset of changes.Only one suggestion per line can be applied in a batch.Add this suggestion to a batch that can be applied as a single commit.Applying suggestions on deleted lines is not supported.You must change the existing code in this line in order to create a valid suggestion.Outdated suggestions cannot be applied.This suggestion has been applied or marked resolved.Suggestions cannot be applied from pending reviews.Suggestions cannot be applied on multi-line comments.Suggestions cannot be applied while the pull request is queued to merge.Suggestion cannot be applied right now. Please check back later.
Allow sampling devices to be refreshed while SDRangel is running. (Possibly need to add a mutex and MainCore::releasePluginManager to go with MainCore::getPluginManager, so only can be used by one thread)
Add option to automatically update My Position based on GPS. This is started in MainCore, so we get position as soon as possible.
Don't set QFileDialog::DontUseNativeDialog on Android, as Qt's file dialog can't access user storage. Set globally for Linux/Windows, rather than for each dialog.
MainWindow: