Ver Mensaje Individual
  #8  
Viejo 22/08/17, 13:45:31
Array

[xs_avatar]
franx1s franx1s no está en línea
Usuario muy activo
 
Fecha de registro: abr 2011
Mensajes: 570
Tu operador: Movistar

Respuesta encontrada en el foro de XDA, mediante adb:

 Cita:
You can extract the data from the DB files stored by the app com.huami.WearHealth

If you are running pacefied, it is simple to extract using the below commands.
commands:
Code:
adb root
adb pull /data/data/com.huami.watch.health/databases/datacenter.db
adb pull /data/data/com.huami.watch.health/databases/motion
adb pull /data/data/com.huami.watch.health/databases/allday_heartrate.db
All the three files are SQLite DB files that you can browse using SQLite DB Browser.

Datacenter.db has data related to the weekly and daily activity reports. motion (also db file) has data related to daily steps, Sleep and heartrate

If you are not using Pacefied, use adb backup command to back the data and extract db file using abe jar.

-adb backup -f /export_data.ab -noapk com.huami.watch.health
- java -jar abe.jar unpack export_data.ab export_data.tar (abe is android backup extractor)
- extract the tar file using winrar
- navigate to export_data\apps\com.huami.watch.health\db folder and open db using DB browser
Responder Con Cita