-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathprivacy.html
More file actions
105 lines (93 loc) · 4.82 KB
/
privacy.html
File metadata and controls
105 lines (93 loc) · 4.82 KB
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
42
43
44
45
46
47
48
49
50
51
52
53
54
55
56
57
58
59
60
61
62
63
64
65
66
67
68
69
70
71
72
73
74
75
76
77
78
79
80
81
82
83
84
85
86
87
88
89
90
91
92
93
94
95
96
97
98
99
100
101
102
103
104
105
<!DOCTYPE html>
<html lang="en">
<head>
<meta charset="UTF-8">
<meta name="viewport" content="width=device-width, initial-scale=1.0">
<title>SnapSafe - Privacy Policy</title>
<link rel="apple-touch-icon" sizes="180x180" href="/apple-touch-icon.png">
<link rel="icon" type="image/png" sizes="32x32" href="/favicon-32x32.png">
<link rel="icon" type="image/png" sizes="16x16" href="/favicon-16x16.png">
<link rel="manifest" href="/site.webmanifest">
<link rel="shortcut icon" href="/favicon.ico">
<script defer src="https://cloud.umami.is/script.js" data-website-id="ebcfc372-fd4f-48b0-bb4d-397883537ea0"></script>
<link rel="stylesheet" href="common.css">
<link rel="stylesheet" href="privacy.css">
</head>
<body>
<header>
<div class="hero">
<h1>SnapSafe Privacy Policy</h1>
<p>We don't want your data.</p>
</div>
</header>
<div class="container">
<div class="effective-date">Effective April 20, 2025</div>
<div class="summary">
<p>SnapSafe was built with privacy as its first‑class feature. Below is the plain‑language summary of what happens to your data when you use the app:</p>
</div>
<table class="data-table">
<thead>
<tr>
<th>What we collect</th>
<th>Where it goes</th>
<th>Why we need it</th>
</tr>
</thead>
<tbody>
<tr>
<td><span class="highlight">Nothing</span>—no personal data, usage analytics, or diagnostics</td>
<td>Nowhere (the app has <em>no</em> Internet permission)</td>
<td>We don't</td>
</tr>
</tbody>
</table>
<div class="privacy-section">
<h2>1. Data Collection</h2>
<p>SnapSafe does <span class="highlight">not</span> collect, store, or transmit any personally identifiable information (PII), usage data, or any other kind of data whatsoever. All photos and videos remain solely on your device, unless you explicitly share them.</p>
</div>
<div class="privacy-section">
<h2>2. Network Access</h2>
<p>The app's manifest deliberately omits <code>android.permission.INTERNET</code>. Consequently, SnapSafe is technically incapable of connecting to the Internet, cloud services, or third‑party APIs.</p>
</div>
<div class="privacy-section">
<h2>3. File Access</h2>
<p>SnapSafe operates entirely within its private app storage for saving images you capture. It does <span class="highlight">not</span> request broad file‑system access (e.g., <code>MANAGE_EXTERNAL_STORAGE</code>) and never reads files outside its own sandbox.</p>
</div>
<div class="privacy-section">
<h2>4. Permissions Used</h2>
<ul>
<li><code>android.permission.CAMERA</code> – required to capture photos and video.</li>
<li><code>android.permission.ACCESS_COARSE_LOCATION</code> – Users can optionally grant this permission if they want obfuscated location data saved with their photos.</li>
<li><code>android.permission.ACCESS_FINE_LOCATION</code> – Users can optionally grant this permission if they want precise location data saved with their photos.</li>
</ul>
<p>No other runtime permissions are requested.</p>
</div>
<div class="privacy-section">
<h2>5. Third‑Party Services</h2>
<p>None. SnapSafe is 100% open source and contains no advertising or analytics libraries.</p>
</div>
<div class="privacy-section">
<h2>6. Changes to This Policy</h2>
<p>If SnapSafe's behavior ever changes in a way that affects privacy, this document will be updated in the source repository and a new release will note those changes.</p>
</div>
<div class="privacy-section">
<h2>7. Contact</h2>
<p>Questions or concerns? Open an issue in the <a href="https://github.com/Wavesonics/SecureCamera" style="color: #6a11cb;">GitHub repository</a>.</p>
</div>
<div style="text-align: center; margin: 3rem 0;">
<a href="index.html" class="button">Return to Home</a>
</div>
</div>
<footer>
<div class="footer-links">
<a href="index.html">Home</a>
<a href="security.html">Security Details</a>
<a href="technical.html">Technical Details</a>
<a href="incidents.html">Privacy Incidents</a>
<a href="https://github.com/SecureCamera">GitHub</a>
<a href="mailto:darkrockstudios@gmail.com">Contact</a>
</div>
<p>© 2025 SnapSafe. All rights reserved.</p>
</footer>
</body>
</html>