我在我的手机上安装了非常好的2.0应用程序。我想看到前几天心跳数据,但没有任何选项。我可以通过它进入应用程序的数据库,因为我知道它的一个脱机应用程序?
我在我的手机上安装了非常好的2.0应用程序。我想看到前几天心跳数据,但没有任何选项。我可以通过它进入应用程序的数据库,因为我知道它的一个脱机应用程序?
I have installed VeryFit2.0 app on my mobile.I want to see previous days heart beat data but there is no option.Is there are way by which I can get in to the database of the app as I know its an offline app ?
响应数据库位置:SD卡上的数据库看起来像排序的备份。真实数据库在系统中找到: System/data/data/com.veryfit/multi
我发现它使用了Android Studio。但是,如果您的手机未植根,则无法访问目录。但如果使用adb,您可以在计算机上创建该文件夹的备份: adb backup -noapk com.veryfit.multi
一旦您有备份方式,您需要解压缩它。我使用了Android备份提取器。这将为您提供一个.tar文件,您可以使用sqlite3打开和探索数据库 我发现这个信息的链接:
访问数据内部数据/数据/ https://stackoverflow.com/questions/13006315/how-to-access-data-data-folder-in-android-device
提取ab文件 https://stackoverflow.com/questions/18533567/how-to-extract-or-unpack-an-ab-file-android-backup-file
Responding about the database location: The database on the sd card looks like a backup of sorts. The real database is found in the system : System/data/data/com.veryfit/multi
I found it using android studio. However if your phone is not rooted you can't access the directory. But if you use adb you can create a backup of that folder on your computer: adb backup -noapk com.veryfit.multi
Once you have the backup.ab you need to unpack it. I used Android Backup Extractor . That will give you a .tar file that you can open and explore the database using sqlite3
Links where I found this info:
access data inside data/data/ https://stackoverflow.com/questions/13006315/how-to-access-data-data-folder-in-android-device
extracting an ab file https://stackoverflow.com/questions/18533567/how-to-extract-or-unpack-an-ab-file-android-backup-file
从参考指南PDF:您还可以选择通过选择"今天" 下面的"向下" 箭头来查看前一天的活动。这将允许您选择前一天以查看这些统计数据。要关闭此选项,请选择屏幕上的任何位置,以便此信息消失
另一个选项是使用左上角的"共享" 图标将数据发送到外部源以供日后查看。
http://www.ktipromo.com/fitness_activity_tracker_reference_guide.pdf
From the Reference Guide PDF: You can also select to see a previous dayxe2x80x99s activity by selecting the xe2x80x9cDownxe2x80x9d arrow below xe2x80x9cTodayxe2x80x9d. This will allow you to then select a previous day to review those stats. To close this option, just select anywhere on the screen for that information to go away
Another option would be to use the "Share" icon in the upper left to send the data to an external source for later review.
http://www.ktipromo.com/Fitness_Activity_Tracker_Reference_Guide.pdf
© 2022 it.wenda123.org All Rights Reserved. 问答之家 版权所有