-
Notifications
You must be signed in to change notification settings - Fork 3
Expand file tree
/
Copy pathfaq.html
More file actions
556 lines (536 loc) · 27.6 KB
/
faq.html
File metadata and controls
556 lines (536 loc) · 27.6 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
106
107
108
109
110
111
112
113
114
115
116
117
118
119
120
121
122
123
124
125
126
127
128
129
130
131
132
133
134
135
136
137
138
139
140
141
142
143
144
145
146
147
148
149
150
151
152
153
154
155
156
157
158
159
160
161
162
163
164
165
166
167
168
169
170
171
172
173
174
175
176
177
178
179
180
181
182
183
184
185
186
187
188
189
190
191
192
193
194
195
196
197
198
199
200
201
202
203
204
205
206
207
208
209
210
211
212
213
214
215
216
217
218
219
220
221
222
223
224
225
226
227
228
229
230
231
232
233
234
235
236
237
238
239
240
241
242
243
244
245
246
247
248
249
250
251
252
253
254
255
256
257
258
259
260
261
262
263
264
265
266
267
268
269
270
271
272
273
274
275
276
277
278
279
280
281
282
283
284
285
286
287
288
289
290
291
292
293
294
295
296
297
298
299
300
301
302
303
304
305
306
307
308
309
310
311
312
313
314
315
316
317
318
319
320
321
322
323
324
325
326
327
328
329
330
331
332
333
334
335
336
337
338
339
340
341
342
343
344
345
346
347
348
349
350
351
352
353
354
355
356
357
358
359
360
361
362
363
364
365
366
367
368
369
370
371
372
373
374
375
376
377
378
379
380
381
382
383
384
385
386
387
388
389
390
391
392
393
394
395
396
397
398
399
400
401
402
403
404
405
406
407
408
409
410
411
412
413
414
415
416
417
418
419
420
421
422
423
424
425
426
427
428
429
430
431
432
433
434
435
436
437
438
439
440
441
442
443
444
445
446
447
448
449
450
451
452
453
454
455
456
457
458
459
460
461
462
463
464
465
466
467
468
469
470
471
472
473
474
475
476
477
478
479
480
481
482
483
484
485
486
487
488
489
490
491
492
493
494
495
496
497
498
499
500
501
502
503
504
505
506
507
508
509
510
511
512
513
514
515
516
517
518
519
520
521
522
523
524
525
526
527
528
529
530
531
532
533
534
535
536
537
538
539
540
541
542
543
544
545
546
547
548
549
550
551
552
553
554
555
556
<!DOCTYPE html>
<html lang="en">
<head>
<!-- Meta -->
<meta charset="UTF-8">
<title>Frequently Asked Questions | OpenAndroidInstaller</title>
<meta name="viewport" content="width=device-width, initial-scale=1">
<meta name="author" content="Tobias Sterbak">
<meta name="description" content="Makes installing alternative Android distributions like LineageOS nice and easy.">
<meta name="referrer" content="unsafe-url">
<meta name="robots" content="index, follow">
<meta property="og:title" content="Frequently Asked Questions | OpenAndroidInstaller">
<meta property="og:description"
content="Makes installing alternative Android distributions like LineageOS nice and easy. Download now!">
<meta property="og:image" content="static/preview-header.png">
<meta property="og:image:width" content="700">
<meta property="og:image:height" content="280">
<meta name="twitter:card" content="summary_large_image">
<meta name="twitter:title" content="Frequently Asked Questions | OpenAndroidInstaller">
<meta name="twitter:creator" content="@oainstaller">
<meta name="twitter:description"
content="Makes installing alternative Android distributions like LineageOS nice and easy. Download now!">
<meta name="twitter:image" content="static/preview-header.png">
<link rel="stylesheet" href="static/style.css">
<link rel="stylesheet" href="static/custom.css">
<link rel="icon" href="static/favicon.ico">
<meta name="msvalidate.01" content="BADB1605403452D1F9CB0E93E71BCEA6">
<!-- Meta End -->
<script defer data-domain="openandroidinstaller.org"
src="https://plausible.io/js/script.outbound-links.file-downloads.js"></script>
<script>window.plausible = window.plausible || function () { (window.plausible.q = window.plausible.q || []).push(arguments) }</script>
<script>
document.addEventListener('DOMContentLoaded', () => {
// Get all "navbar-burger" elements
const $navbarBurgers = Array.prototype.slice.call(document.querySelectorAll('.navbar-burger'), 0);
// Add a click event on each of them
$navbarBurgers.forEach(el => {
el.addEventListener('click', () => {
// Get the target from the "data-target" attribute
const target = el.dataset.target;
const $target = document.getElementById(target);
// Toggle the "is-active" class on both the "navbar-burger" and the "navbar-menu"
el.classList.toggle('is-active');
$target.classList.toggle('is-active');
});
});
});
</script>
</head>
<body>
<!-- Nav -->
<nav class="navbar py-4">
<div class="container is-fluid">
<div class="navbar-brand">
<a class="navbar-item" href="https://openandroidinstaller.org">
<img class="image" src="static/oai-logo.jpg" alt="OpenAndroidInstaller Logo" width="30" height="30">
</a>
<a class="navbar-burger round hover-transition" role="button" aria-label="menu" aria-expanded="false"
data-target="navMenu">
<span aria-hidden="true"></span>
<span aria-hidden="true"></span>
<span aria-hidden="true"></span>
</a>
</div>
<div class="navbar-menu round" id="navMenu">
<div class="navbar-end">
<a class="navbar-item round hover-transition" href="https://openandroidinstaller.org/#getting-started">
<span class="icon"><i class="fa fa-play"></i></span><span>Getting started</span>
</a>
<a class="navbar-item round hover-transition" href="supported-devices.html">
<span class="icon"><i class="fa fa-mobile"></i></span><span>Supported Devices</span>
</a>
<a class="navbar-item round hover-transition" href="download.html">
<span class="icon"><i class="fa fa-download"></i></span><span>Download</span>
</a>
<a class="navbar-item round hover-transition" href="https://openandroidinstaller.org/#contribute">
<span class="icon"><i class="fa fa-heart"></i></span><span>Contribute</span>
</a>
<a class="navbar-item round hover-transition" href="faq.html">
<span class="icon"><i class="fa fa-question"></i></span><span>FAQ</span>
</a>
<a class="navbar-item round hover-transition"
href="https://github.com/openandroidinstaller-dev/openandroidinstaller" rel="noopener" target="_blank">
<span class="icon"><i class="fab fa-github"></i></span><span>GitHub</span>
</a>
<a class="navbar-item round hover-transition" href="mailto:hello@openandroidinstaller.org">
<span class="icon"><i class="fa fa-envelope"></i></span><span>Get Help</span>
</a>
</div>
</div>
</div>
</nav>
<!-- Nav End -->
<!-- Main -->
<!-- Header -->
<section class="hero is-small">
<div class="hero-body">
<div class="container has-text-centered">
<h1 class="is-size-1 is-size-3-mobile has-text-weight-bold">Frequently Asked Questions</h1>
</div>
</div>
</section>
<!-- Header End -->
<!-- FAQ -->
<section class="section">
<div class="container is-max-desktop">
<!-- TOC -->
<div class="box px-6">
<ul>
<li><a href="#what-android-roms-are-supported">Which Android ROMs are supported?</a></li>
<li><a href="#my-device-is-not-supported">My devices is not supported. What can I do?</a></li>
<li><a href="#backup">Will the installer do a backup of my files and data?</a></li>
<li><a href="#which-addons">What are addons and which ones are supported?</a></li>
<li><a href="#can-i-use-gapps">How can I use Google Apps for my devices?</a></li>
<li><a href="#somethings-wrong">What to do if something goes wrong?</a></li>
<li><a href="#unlock-bootloader">Will this tool unlock my bootloader?</a></li>
<li><a href="#is-it-virus">Virus scanners show the tool as a virus or trojan. What is going on?</a></li>
<li><a href="#fastboot-hangs">When flashing the custom recovery, the applications hangs and the advanced output
shows "waiting-for-device". What can I do?</a></li>
<li><a href="#find-logs">Where do I find the logfiles?</a></li>
<li><a href="#dll-missing">I get the error message "msvcp110.dll missing".</a></li>
<li><a href="#data-collection">Collection of anonymous usage data</a></li>
</ul>
</div>
<!-- TOC End -->
<!-- Content -->
<div class="notification has-background-white-bis p-6 content">
<h3 id="what-android-roms-are-supported" class="title is-3">What Android ROMs are supported?</h3>
<div class="content">
<p>
Most of the devices are tested with LineageOS (official and some unofficial releases) as well as LineageOS
for microG or PixelExperience when available.
But you can use the OpenAndroidInstaller to install all kinds of custom Android ROMs.
</p>
<h4>A selection of different Android-based ROMs and where to find them:</h4>
<ul>
<li><a href="https://wiki.lineageos.org/devices" rel="noopener" target="_blank">LineageOS</a></li>
<li><a href="https://doc.e.foundation/devices" rel="noopener" target="_blank">/e/OS</a></li>
<li><a href="https://download.lineage.microg.org" rel="noopener" target="_blank">LineageOS for microG</a>
</li>
<li><a href="https://blissroms.org" rel="noopener" target="_blank">BlissRoms</a></li>
<li><a href="https://download.pixelexperience.org" rel="noopener" target="_blank">PixelExperience with
built-in
GApps</a></li>
<li>or you can just search the web or the <a href="https://xdaforums.com" rel="noopener"
target="_blank">xdaforums</a> for an appropriate version for your device.</li>
</ul>
</div>
</div>
<div class="notification has-background-white-bis p-6 content">
<h3 id="my-device-is-not-supported" class="title is-3">My device is not supported. What can I do?</h3>
<div class="content">
<p>
If your device is currently not supported, you have basically two options.
</p>
<h4>Contribute support for your device:</h4>
<p>If you have some experience with flashing Android ROMs, you can find more details on how to contribute
here: <a class="is-link" href="index.html/#contribute" rel="noopener" target="_blank">How to contribute?</a>
</p>
<h4>Ask for support:</h4>
<p>You can also open a github issue and ask for support for your device. There might be reasons, that your
device is not supported and likely will not get support.</p>
</div>
</div>
<div class="notification has-background-white-bis p-6 content">
<h3 id="backup" class="title is-3">Will the installer do a backup of my files and data?</h3>
<div class="content">
<p><b>No.</b> Everything on the device will be deleted. Make your own backup manually.</p>
<p><b>Don't rely on automatic backup solutions,</b> especially vendor ones since they will most likely not work
afterwards.</p>
</div>
</div>
<div class="notification has-background-white-bis p-6 content">
<h3 id="which-addons" class="title is-3">What are addons and which ones are supported?</h3>
<p>Addons are optional, additional apps and services that are useful to have. Most notable Google Apps and
Services as well as microG to replace them or the F-Droid FOSS App-Store.</p>
<p>There are different packages of <em>Google Apps</em> available.</p>
<ul>
<li><a href="https://wiki.lineageos.org/gapps#downloads" rel="noopener" target="_blank">MindTheGapps</a></li>
<li><a href="https://nikgapps.com" rel="noopener" target="_blank">NikGApps</a></li>
</ul>
<p>You can find out more about microG here: <a href="https://microg.org" rel="noopener"
target="_blank">microG</a>.
The recommended way to install microG is to use the zip file provided here: <a
href="https://github.com/FriendlyNeighborhoodShane/MinMicroG-abuse-CI/releases" rel="noopener"
target="_blank">FriendlyNeighborhoodShane/MinMicroG-abuse-CI</a>.
An alternative installer for microG can be found here: <a
href="https://github.com/micro5k/microg-unofficial-installer" rel="noopener"
target="_blank">microG unofficial installer</a>.
The best way to get an installable zip for F-Droid can be found here: <a
href="https://f-droid.org/en/packages/org.fdroid.fdroid.privileged.ota" rel="noopener" target="_blank">F-Droid
App-Store</a>.
</p>
</div>
<div class="notification has-background-white-bis p-6 content">
<h3 id="can-i-use-gapps" class="title is-3">How can I use Google Apps for my device?</h3>
<p>While we don't like Google apps, some people feel that they need them to leverage the full experience of
their Android devices.
We believe people should be free to do what they want with their devices. So installing them is supported as
well.
</p>
<p>It is still recommended to use ROMs with built-in Google Apps like PixelExperience.</p>
</div>
<div class="notification has-background-white-bis p-6 content">
<h3 id="somethings-wrong" class="title is-3">What to do if something goes wrong?</h3>
<p class="title is-5">Sometimes things will hang with showing "waiting-for-device" in the "Advanced output" view
or fail to send the recovery or image to the device correctly.
</p>
<p>
What you can do in this case:
</p>
<ul>
<li>Try a different USB-Cable</li>
<li>Try a different USB-Port on your PC</li>
</ul>
<p class="title is-5">Sometimes the selected ROM image will not boot properly.
Usually, in this case, the image is not suited for the specific device or is broken.
</p>
<p>
What you can do in this case:
</p>
<ul>
<li>Make sure your device is supported by the image up to the exact device id.
<li>Try a different image for your device. This is especially useful for unofficial images of ROMs.</li>
</ul>
<p>Of course, there are other things that can go wrong. If none of the above helps, write an <a
href="mailto:help@openandroidinstaller.org">e-mail</a> or raise an <a
href="https://github.com/openandroidinstaller-dev/openandroidinstaller/issues/new/choose" target="_blank"
rel="noopener">issue</a> on GitHub.
</p>
</div>
<div class="notification has-background-white-bis p-6 content">
<h3 id="unlock-bootloader" class="title is-3">Will this tool unlock my bootloader?</h3>
<p>First of all, this tool will not help you bypass any vendor locked bootloaders in non-official ways.</p>
<p>Devices by <em>Samsung, Google, OnePlus, Fairphone</em> and others make it relatively easy to unlock the
bootloader and get good support in the installer.</p>
<p>For some devices, it is necessary to unlock the bootloader manually. You usually need to create an account on
the manufacturer's website, wait for a certain time and obtain a code from there. OpenAndroidInstaller will
try to guide you as far as possible. These vendors include <em>Sony, Motorola and Xiaomi</em> amongst others.
</p>
<p>Other phone manufacturers no longer allow you to unlock the bootloader. Nothing can be done if you have not
unlocked your device in time. These manufacturers include <em>Huawei, Honor, LG and ASUS</em>. Support for these
manufacturers will always be very limited.</p>
<p>
<b>Here is a brief overview of the bootloader policies of some of the most popular brands (may be
incomplete/inaccurate):</b>
</p>
<table>
<thead>
<tr>
<th>Brand</th>
<th>Flashing tool</th>
<th>Unlocking Method</th>
<th>Loss of guarantee*</th>
<th>Supported models</th>
</tr>
</thead>
<tbody>
<tr>
<td>Google</td>
<td>Fastboot</td>
<td>OEM/Flashing unlock</td>
<td>No</td>
<td>Pixel and Nexus</td>
</tr>
<tr>
<td>Samsung</td>
<td>ODIN or Heimdall</td>
<td>Download mode</td>
<td><strong>Yes</strong></td>
<td>Galaxy S and A series<br>(Increasing complexity <strong>on and after S10</strong>)</td>
</tr>
<tr>
<td>OnePlus</td>
<td>Fastboot</td>
<td>OEM/Flashing unlock</td>
<td>No</td>
<td>All</td>
</tr>
<tr>
<td>Fairphone</td>
<td>Fastboot</td>
<td><a href="https://support.fairphone.com/hc/en-us/articles/10492476238865-Manage-the-Bootloader">Code
from manufacturer</a><br>(<strong>Already unlocked until FP2</strong>)</td>
<td>No</td>
<td>All</td>
</tr>
<tr>
<td>Xiaomi</td>
<td>Fastboot</td>
<td><a href="https://new.c.mi.com/global/post/101245">Mi Unlock Tool</a></td>
<td><strong>Yes</strong></td>
<td>Mi 4c, Redmi Note 3, Mi Note Pro, Redmi 3, Mi 4S, Mi 5 and all devices from 2016 onwards</td>
</tr>
<tr>
<td>Motorola</td>
<td>Fastboot</td>
<td><a href="https://en-us.support.motorola.com/app/standalone/bootloader/unlock-your-device-a">Code from
manufacturer</a></td>
<td><strong>Yes</strong></td>
<td>Almost all <strong>except</strong> carrier specific models (e.g. Verizon, AT&T, Tracfone) and
certain other models</td>
</tr>
<tr>
<td>Sony</td>
<td>Fastboot</td>
<td><a
href="https://developer.sony.com/open-source/aosp-on-xperia-open-devices/get-started/unlock-bootloader">Code
from manufacturer</a></td>
<td><strong>Yes</strong></td>
<td>All <strong>except</strong> XQ-CT62 (1Ⅳ US) & XQ-CQ62 (5Ⅳ US)</td>
</tr>
<tr>
<td>Huawei</td>
<td>Fastboot</td>
<td>No official codes since 2017/2018<br>(<strong>Unofficial methods available</strong>)</td>
<td><strong>Yes</strong></td>
<td>Mate 9/9Pro, P10/P10Plus</td>
</tr>
<tr>
<td>Honor</td>
<td>Fastboot</td>
<td>No official codes since 2017/2018<br>(<strong>Unofficial methods available</strong>)</td>
<td><strong>Yes</strong></td>
<td>Honor 8</td>
</tr>
<tr>
<td>LG</td>
<td>Fastboot</td>
<td>Impossible since December 2021</td>
<td><strong>Yes</strong></td>
<td></td>
</tr>
<tr>
<td>ASUS</td>
<td>Fastboot</td>
<td>Impossible since May 2023 (ASUS unlocking App)</td>
<td><strong>Yes</strong></td>
</tr>
</tbody>
</table>
<p><strong>*</strong> In the EU you won't loose your standard 2 years of the warranty when you unlock your
bootloader, flash your device or root it. (<a
href="https://xdaforums.com/t/info-eu-rooting-and-flashing-dont-void-the-warranty.1998801">source</a>)
</p>
<p>You can find more information about the brands and their bootloader policies <a
href="https://wikilibriste.fr/fr/tutoriels-android/bootloader-unlock">here</a> (in French).</p>
</div>
<div class="notification has-background-white-bis p-6 content">
<h3 id="is-it-virus" class="title is-3">Virus scanners show the tool as a virus or trojan. What is going on?
</h3>
<p>In some virus scanners the OpenAndroidInstaller shows up as a virus or trojan. This is a false positive. We
explain the issue here: <br>
The code and build process of the distributed files is completely open source and can be found on GitHub. So
people can verify that it's not malicious software.
</p>
<p>The Installer is bundled and compiled python code made into an executable file. This is done with <a
href="https://pyinstaller.org" rel="noopener" target="_blank">pyinstaller</a>.
As it turns out, false positive issues are known and people encounter them regularly.</p>
<ul>
<li><a
href="https://stackoverflow.com/questions/43777106/program-made-with-pyinstaller-now-seen-as-a-trojan-horse-by-avg"
rel="noopener"
target="_blank">https://stackoverflow.com/questions/43777106/program-made-with-pyinstaller-now-seen-as-a-trojan-horse-by-avg</a>
</li>
<li><a href="https://github.com/pyinstaller/pyinstaller/blob/develop/.github/ISSUE_TEMPLATE/antivirus.md"
rel="noopener"
target="_blank">https://github.com/pyinstaller/pyinstaller/blob/develop/.github/ISSUE_TEMPLATE/antivirus.md</a>
</li>
</ul>
<p>As far as we know, there is no real solution to this issue.</p>
</div>
<div class="notification has-background-white-bis p-6 content">
<h3 id="fastboot-hangs" class="title is-3">When flashing the custom recovery, the applications hangs and the
advanced output shows "waiting-for-device". What can I do?</h3>
<p> It seems like sometimes fastboot (the tool used for flashing the recovery) doesn't work properly. A possible
solution weirdly can be to try a different USB-cable and/or different USB-Ports.</p>
</div>
<div class="notification has-background-white-bis p-6 content">
<h3 id="find-logs" class="title is-3">Where do I find the logfiles?</h3>
<p>For the Flatpak, the logs are located in
<code>~/.var/app/org.openandroidinstaller.OpenAndroidInstaller/data/openandroidinstaller.log</code>.
</p>
<p>If you are running the executable directly, the logs are located in the same directory as the executable.</p>
</div>
<div class="notification has-background-white-bis p-6 content">
<h3 id="dll-missing" class="title is-3">I get the error message "msvcp110.dll missing" on Windows.</h3>
<p>This error (and similar dll issues) are usually resolved by installing <a
href="https://www.microsoft.com/de-DE/download/details.aspx?id=30679" target="_blank">Visual C++
Redistributable für Visual Studio 2012</a>. Make sure to also install the 32-bit version, named
<code>VSU4\vcredist_x86.exe</code>, since heimdall runs on 32 bit. (To be sure, reboot the PC before trying the
Installer again.).
</p>
</div>
<div class="notification has-background-white-bis p-6 content">
<h3 id="data-collection" class="title is-3">Collection of anonymous usage data</h3>
<p>The OpenAndroidInstaller application collects anonymous usage data to help us improve the application. This
data is collected using <a href="https://plausible.io" target="_blank">Plausible Analytics</a> and is stored on
their servers. For convenience: these are Plausible's <a href="https://plausible.io/data-policy" target="_blank">Data Policy</a> & <a href="https://plausible.io/privacy" target="_blank">Privacy Policy</a>.
We <em>do not collect any personal data</em>, and we <em>do not track individual users</em>. We only collect the
device code when the
installation process is started and finished to see which devices are most commonly used with the application.
The code is available in the function <a
href="https://github.com/openandroidinstaller-dev/openandroidinstaller/blob/55eba7f585128a1b73be6695a6d663a2686bf793/openandroidinstaller/utils.py#L193"
target="_blank">`send_tracking_info` in the `openandroidinstaller/utils.py`</a> file.
</p>
</div>
<!-- Content End -->
</div>
</section>
<!-- FAQ End -->
<!-- Contribution Banner -->
<section class="section has-background-primary">
<div class="container">
<div class="is-vcentered columns is-multiline">
<div class="column is-6 is-5-desktop mb-4">
<h2 class="has-text-white mt-2 mb-3 is-size-1 is-size-3-mobile has-text-weight-bold">Still having questions?
</h2>
</div>
<div class="column is-5 ml-auto">
<div class="mx-auto box p-6 has-background-light has-text-centered">
<a class="button is-link is-fullwidth hover-transition" id="contribute-button"
href="mailto:help@openandroidinstaller.org">Write an e-mail</a>
</div>
</div>
</div>
</div>
</section>
<!-- Contribution Banner End -->
<!-- Main End -->
<!-- Footer -->
<footer class="section">
<div class="container">
<div class="pb-5 is-flex is-flex-wrap-wrap is-justify-content-between is-align-items-center">
<div class="mr-auto mb-2">
<div class="is-inline-block">
<a href="https://openandroidinstaller.org">
<img class="image is-96x96 round" src="static/oai-logo.jpg" alt="OpenAndroidInstaller Logo">
</a>
</div>
<div class="is-inline-block" id="pf-funding-logos">
<figure class="image">
<img src="static/pf_funding_logos.svg" alt="BMBF logo">
</figure>
</div>
</div>
<div>
<ul class="is-flex is-flex-wrap-wrap is-align-items-center is-justify-content-center">
<li class="mr-4"><a class="button is-white hover-transition"
href="https://github.com/openandroidinstaller-dev/openandroidinstaller-dev.github.io/files/10787205/press-kit-openandroidinstaller.zip"
rel="noopener" target="_blank">Download press kit</a></li>
<li class="mr-4"><a class="button is-white hover-transition"
href="https://github.com/openandroidinstaller-dev/openandroidinstaller#acknowledgements" rel="noopener"
target="_blank">Funding</a></li>
<li class="mr-4"><a class="button is-white hover-transition"
href="https://github.com/openandroidinstaller-dev/openandroidinstaller/blob/main/LICENSE" rel="noopener"
target="_blank">License</a></li>
<li class="mr-4"><a class="button is-white hover-transition" href="imprint.html">Impressum</a></li>
<li class="mr-4"><a class="button is-white hover-transition" href="privacy.html">Privacy Statement</a>
</li>
</ul>
</div>
</div>
</div>
<div class="pt-5"></div>
<div class="container">
<div class="is-flex-tablet is-justify-content-between is-align-items-center">
<p>Made with 💚, Python and <a href="https://bulma.io" rel="noopener" target="_blank">Bulma</a> by
Tobias Sterbak. All rights reserved © OpenAndroidInstaller 2022-2025</p>
<div class="py-2 is-hidden-tablet"></div>
<div class="ml-auto">
<a class="mr-4 is-inline-block hover-transition"
href="https://github.com/openandroidinstaller-dev/openandroidinstaller" rel="noopener" target="_blank">
<span class="icon"><i class="fab fa-github"></i></span><span>GitHub</span>
</a>
<a class="mr-4 is-inline-block hover-transition" href="https://twitter.com/OAInstaller" rel="noopener"
target="_blank">
<span class="icon"><i class="fab fa-twitter"></i></span><span>Twitter</span>
</a>
<a class="mr-4 is-inline-block hover-transition" href="https://fosstodon.org/@openandroidinstaller"
rel="me noopener" target="_blank">
<span class="icon"><i class="fab fa-mastodon"></i></span><span>Mastodon</span>
</a>
</div>
</div>
</div>
</footer>
<!-- Footer End -->
</div>
</body>
<link rel="stylesheet" href="static/all.min.css">
<!-- Track button clicks -->
<script>
document.getElementById('download-header').addEventListener("click", function () { plausible('download-header'); });
document.getElementById('download-banner').addEventListener("click", function () { plausible('download-banner'); });
document.getElementById('demo-video').addEventListener("click", function () { plausible('demo-video-started'); });
document.getElementById('contribute-button').addEventListener("click", function () { plausible('contribute-button'); });
document.getElementById('getting-started-button').addEventListener("click", function () { plausible('getting-started'); });
</script>
<!--Automatically close all the other <details> tags after opening a specific <details> tag -->
<script>
// Fetch all the details element.
const details = document.querySelectorAll("details");
// Add the onclick listeners.
details.forEach((targetDetail) => {
targetDetail.addEventListener("click", () => {
// Close all the details that are not targetDetail.
details.forEach((detail) => {
if (detail !== targetDetail) {
detail.removeAttribute("open");
}
});
});
});
</script>
<!--Script for vertical tabs -->
<script>
function openTab(event, tabName) {
// Declare all variables
var i, tabcontent, tablinks;
// Get all elements with class="tabcontent" and hide them
tabcontent = document.getElementsByClassName("tabcontent");
for (i = 0; i < tabcontent.length; i++) {
tabcontent[i].style.display = "none";
}
// Get all elements with class="tablinks" and remove the class "active"
tablinks = document.getElementsByClassName("tablinks");
for (i = 0; i < tablinks.length; i++) {
tablinks[i].className = tablinks[i].className.replace(" is-active", "");
}
// Show the current tab, and add an "active" class to the link that opened the tab
document.getElementById(tabName).style.display = "block";
event.currentTarget.className += " is-active";
}
</script>
</html>