-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathindex.html
More file actions
103 lines (94 loc) · 3.47 KB
/
Copy pathindex.html
File metadata and controls
103 lines (94 loc) · 3.47 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
<!doctype html>
<html lang="en">
<head>
<meta charset="utf-8">
<meta name="viewport" content="width=device-width, initial-scale=1">
<title>Privacy Policy — Electric City</title>
<style>
:root {
color-scheme: light dark;
}
body {
margin: 0;
padding: 2rem 1.25rem 4rem;
background: #0b1220;
color: #e7edf5;
font: 16px/1.6 -apple-system, BlinkMacSystemFont, "Segoe UI", Roboto, Helvetica, Arial, sans-serif;
}
main {
max-width: 720px;
margin: 0 auto;
}
h1 {
font-size: 1.7rem;
margin-bottom: 0.25rem;
}
.updated {
color: #93a4bd;
font-size: 0.9rem;
margin-bottom: 2rem;
}
h2 {
font-size: 1.15rem;
margin-top: 2.2rem;
color: #ffd76b;
}
p, li {
color: #d3dced;
}
ul {
padding-left: 1.2rem;
}
a {
color: #6cc8ff;
}
code {
background: #16233a;
padding: 0.1rem 0.35rem;
border-radius: 4px;
font-size: 0.9em;
}
footer {
margin-top: 3rem;
padding-top: 1.5rem;
border-top: 1px solid #22304a;
color: #7c8ba6;
font-size: 0.85rem;
}
</style>
</head>
<body>
<main>
<h1>Privacy Policy — Electric City</h1>
<p class="updated">Last updated: July 10, 2026</p>
<p>Electric City ("the app", "we", "us") is developed by <strong>kavabunga6</strong> (contact below). This app collects no personal information and makes no network requests at all.</p>
<h2>Summary</h2>
<p>Electric City does not require an account, shows no ads, and has no in-app purchases. It works entirely offline. Your gameplay progress (level, stars, achievements, settings) is stored only on your device.</p>
<h2>What we collect</h2>
<p>Nothing. We do not operate any backend server, and the app does not communicate over the network in any way — it does not even request the Internet permission. All gameplay data — level progress, star ratings, unlocked achievements, and settings — stays in local app storage on your device. It only leaves your device if:</p>
<ul>
<li>your device's own cloud backup (e.g. Android Auto Backup / Google One) copies it as part of a full device backup, or</li>
<li>you manually use the in-app "Export progress to file" feature to create a backup file yourself.</li>
</ul>
<p>We do not use any advertising, analytics, crash-reporting, or payment SDK, and the app does not request access to your contacts, location, camera, microphone, or photos.</p>
<h2>Permissions the app requests</h2>
<ul>
<li><strong>Vibrate</strong> — used for haptic feedback on taps and level completion. That is the only permission this app requests.</li>
</ul>
<h2>Children's privacy</h2>
<p>Electric City is not directed at children and is not designed or marketed as a children's app. We do not collect personal information from children — or from anyone, since the app collects nothing at all.</p>
<h2>Your choices</h2>
<ul>
<li>The entire game works offline; no feature requires an internet connection.</li>
<li>You can export and later re-import your progress yourself from Settings, independent of any store or cloud account.</li>
</ul>
<h2>Contact</h2>
<p>Questions about this policy: <a href="mailto:devkondrashin@gmail.com">devkondrashin@gmail.com</a></p>
<h2>Changes to this policy</h2>
<p>We may update this policy if the app's data handling ever changes. We'll update the "Last updated" date above when we do.</p>
<footer>
Electric City · <a href="https://boosty.to/kavabunga6">boosty.to/kavabunga6</a>
</footer>
</main>
</body>
</html>