How to store a file in an internal location on an Android Phone?
Unsolved
Mobile and Embedded
-
I am working on a QT application for Android phones. I want to know how does one store a file internally on Android device. Most of the things I saw related to the subject are old or use the AndroidExtras library which was removed from the latest versions of QT. like 6.3.0, 6.3.1 etc....
Let's say you generated a file in the app, how do you store it in some location on the Phone like a folder you created?
-
Use QStandardPaths::writeableLocation to find the proper location. Use QDir and QFile to finish the save.