Replies: 1 comment
-
Hello guys, having a way to access the database directly would enable many users to have more flexibility to work with the data. I tried to locate the database in /data/data/org.noise_planet.noisecapture but couldn't find it. UPDATE ON THIS: Unfortunately since this app is not debuggable, we can't run the command below to confirm if it would be accessible this way:
Using this website: https://apkeditor.io/ I was able to enable the debug flag in the manifest for the app, and I could successfully pull the Storage.db file using the below command: |
Beta Was this translation helpful? Give feedback.
-
You can backup the database but it requires some knowledge in Android.
The data of NoiseCapture is stored in a private folder in your phone:
/data/data/org.noise_planet.noisecapture/databases/Storage.db
You can use the device explorer of Android Studio to retrieve this file. It is a SQLLite database without passwords, so you can open it with DBeaver for example.
Beta Was this translation helpful? Give feedback.
All reactions