Passing android Intents to Qt
Working on QField I had the necessity of passing values from the QtActivity.java to the Qt cpp world, here how I did it using an Intent that is sent to the QtActivity (the one you should not edit that comes with Qt). For much more information see this post series. hopefully this will be helpful to someone. private void startQtActivity() { String dotqgis2_dir = “Test dotqgis2_dir”; String share_dir = “Test share_dir”; // forward to startQtActivity and Read more…