Mini project to read Apple Health export xml.
Health > Health Data > Profile > Export Health Data
mvn clean package
Reads export.xml and writes a .csv file of simplified health records
java -jar apple-health-reader-1.0-SNAPSHOT-full.jar ./export.xml ./output.csv
To log only exclude the output file
java -jar apple-health-reader-1.0-SNAPSHOT-full.jar ./export.xml
Read your Apple Health xml in to a Collection
Collection<AppleHealthRecord> records = AppleHealthReader.read("export.xml");