Skip to content

Instantly share code, notes, and snippets.

@jurajkrivda
Created January 31, 2026 12:56
Show Gist options
  • Select an option

  • Save jurajkrivda/7f4d4404eb4c30bf6524948e6f6280fc to your computer and use it in GitHub Desktop.

Select an option

Save jurajkrivda/7f4d4404eb4c30bf6524948e6f6280fc to your computer and use it in GitHub Desktop.
Hunger Timer Privacy Policy
<!DOCTYPE html>
<html lang="en">
<head>
<meta charset="UTF-8">
<meta name="viewport" content="width=device-width, initial-scale=1.0">
<title>Hunger Timer - Privacy Policy</title>
<style>
* {
margin: 0;
padding: 0;
box-sizing: border-box;
}
body {
font-family: -apple-system, BlinkMacSystemFont, 'Segoe UI', Roboto, Oxygen, Ubuntu, sans-serif;
line-height: 1.6;
color: #333;
background: #fafafa;
padding: 20px;
}
.container {
max-width: 800px;
margin: 0 auto;
background: white;
padding: 40px;
border-radius: 12px;
box-shadow: 0 2px 10px rgba(0,0,0,0.1);
}
h1 {
color: #1a1a1a;
margin-bottom: 10px;
font-size: 2em;
}
.subtitle {
color: #666;
margin-bottom: 30px;
}
h2 {
color: #1a1a1a;
margin-top: 30px;
margin-bottom: 15px;
font-size: 1.3em;
}
p, li {
color: #444;
margin-bottom: 15px;
}
ul {
margin-left: 20px;
margin-bottom: 15px;
}
.highlight {
background: #f0f7f0;
padding: 20px;
border-radius: 8px;
border-left: 4px solid #4CAF50;
margin: 20px 0;
}
.contact {
background: #f5f5f5;
padding: 20px;
border-radius: 8px;
margin-top: 30px;
}
.updated {
color: #888;
font-size: 0.9em;
margin-top: 40px;
padding-top: 20px;
border-top: 1px solid #eee;
}
</style>
</head>
<body>
<div class="container">
<h1>Privacy Policy</h1>
<p class="subtitle">Hunger Timer App</p>
<div class="highlight">
<strong>Summary:</strong> Hunger Timer respects your privacy. All your data stays on your device and in your personal iCloud account. We do not collect, store, or share any personal information.
</div>
<h2>Data Storage</h2>
<p>Hunger Timer stores all data locally on your device and optionally syncs via your personal iCloud account:</p>
<ul>
<li><strong>Meal records</strong> - timestamps and meal sizes you log</li>
<li><strong>App preferences</strong> - your settings and customizations</li>
<li><strong>Purchase status</strong> - whether you have purchased Premium features</li>
</ul>
<p>This data is stored only on your device and in your personal iCloud account. We do not have access to this data.</p>
<h2>Data Collection</h2>
<p>We do <strong>not</strong> collect any personal information. Specifically:</p>
<ul>
<li>No analytics or tracking</li>
<li>No personal identifiers</li>
<li>No location data</li>
<li>No advertising identifiers</li>
<li>No data sent to external servers</li>
</ul>
<h2>iCloud Sync</h2>
<p>If you have iCloud enabled, your meal data may sync across your devices via Apple's iCloud service. This sync is:</p>
<ul>
<li>Controlled by your device settings</li>
<li>Encrypted by Apple</li>
<li>Accessible only to you</li>
</ul>
<p>We do not have access to your iCloud data.</p>
<h2>In-App Purchases</h2>
<p>Purchases are processed by Apple through the App Store. We do not collect or store any payment information. Please refer to <a href="https://www.apple.com/legal/privacy/">Apple's Privacy Policy</a> for information about how Apple handles purchase data.</p>
<h2>Apple Watch & Widgets</h2>
<p>The Apple Watch app and widgets access the same local data as the main app to display your meal timing information. No additional data is collected.</p>
<h2>Children's Privacy</h2>
<p>Hunger Timer does not knowingly collect any information from children. The app is designed for general audiences and contains no age-restricted content.</p>
<h2>Changes to This Policy</h2>
<p>We may update this Privacy Policy from time to time. Any changes will be posted on this page with an updated revision date.</p>
<div class="contact">
<h2>Contact</h2>
<p>If you have any questions about this Privacy Policy, please contact us at:</p>
<p><strong>Email:</strong> [email protected]</p>
</div>
<p class="updated">Last updated: January 31, 2025</p>
</div>
</body>
</html>
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment