Skip to content
New issue

Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.

By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.

Already on GitHub? Sign in to your account

Use Date/Time on Android Device for Fallback Logging #1356

Merged
merged 5 commits into from
Jul 12, 2023

Commits on Jul 11, 2023

  1. Configuration menu
    Copy the full SHA
    b96cdc9 View commit details
    Browse the repository at this point in the history
  2. Configuration menu
    Copy the full SHA
    d1723b9 View commit details
    Browse the repository at this point in the history
  3. Add changenote

    rmartin16 committed Jul 11, 2023
    Configuration menu
    Copy the full SHA
    1d3184d View commit details
    Browse the repository at this point in the history
  4. Configuration menu
    Copy the full SHA
    c2e4b6b View commit details
    Browse the repository at this point in the history

Commits on Jul 12, 2023

  1. Ensure Android device date/time is not timezone converted

    - The Unix epoch is always UTC and `fromtimestamp()` returns a date/time
      that's local to the machine; therefore, if the timezone of the
      machine is different than the device, the date/time will not match the
      local date/time of the device.
    - To avoid this, a specific date/time format is requested from the device
      so it can be parsed on the machine in a timezone-unaware fashion.
    rmartin16 committed Jul 12, 2023
    Configuration menu
    Copy the full SHA
    ed9c234 View commit details
    Browse the repository at this point in the history