-
Notifications
You must be signed in to change notification settings - Fork 1
Expand file tree
/
Copy pathextra.html
More file actions
1529 lines (1527 loc) · 104 KB
/
Copy pathextra.html
File metadata and controls
1529 lines (1527 loc) · 104 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
557
558
559
560
561
562
563
564
565
566
567
568
569
570
571
572
573
574
575
576
577
578
579
580
581
582
583
584
585
586
587
588
589
590
591
592
593
594
595
596
597
598
599
600
601
602
603
604
605
606
607
608
609
610
611
612
613
614
615
616
617
618
619
620
621
622
623
624
625
626
627
628
629
630
631
632
633
634
635
636
637
638
639
640
641
642
643
644
645
646
647
648
649
650
651
652
653
654
655
656
657
658
659
660
661
662
663
664
665
666
667
668
669
670
671
672
673
674
675
676
677
678
679
680
681
682
683
684
685
686
687
688
689
690
691
692
693
694
695
696
697
698
699
700
701
702
703
704
705
706
707
708
709
710
711
712
713
714
715
716
717
718
719
720
721
722
723
724
725
726
727
728
729
730
731
732
733
734
735
736
737
738
739
740
741
742
743
744
745
746
747
748
749
750
751
752
753
754
755
756
757
758
759
760
761
762
763
764
765
766
767
768
769
770
771
772
773
774
775
776
777
778
779
780
781
782
783
784
785
786
787
788
789
790
791
792
793
794
795
796
797
798
799
800
801
802
803
804
805
806
807
808
809
810
811
812
813
814
815
816
817
818
819
820
821
822
823
824
825
826
827
828
829
830
831
832
833
834
835
836
837
838
839
840
841
842
843
844
845
846
847
848
849
850
851
852
853
854
855
856
857
858
859
860
861
862
863
864
865
866
867
868
869
870
871
872
873
874
875
876
877
878
879
880
881
882
883
884
885
886
887
888
889
890
891
892
893
894
895
896
897
898
899
900
901
902
903
904
905
906
907
908
909
910
911
912
913
914
915
916
917
918
919
920
921
922
923
924
925
926
927
928
929
930
931
932
933
934
935
936
937
938
939
940
941
942
943
944
945
946
947
948
949
950
951
952
953
954
955
956
957
958
959
960
961
962
963
964
965
966
967
968
969
970
971
972
973
974
975
976
977
978
979
980
981
982
983
984
985
986
987
988
989
990
991
992
993
994
995
996
997
998
999
1000
<!DOCTYPE html>
<html>
<head>
<title>MicroGPlus | Install MicroG with Ease</title>
<meta charset="utf-8">
<meta name="viewport" content="width=device-width, initial-scale=1, shrink-to-fit=no">
<link rel="stylesheet" href="https://cdnjs.cloudflare.com/ajax/libs/font-awesome/6.2.1/css/all.min.css">
<link rel="stylesheet" href="https://cdn.jsdelivr.net/npm/bootstrap@5.3.3/dist/css/bootstrap.min.css" crossorigin="anonymous">
<link rel="stylesheet" href="https://cdn.jsdelivr.net/npm/bootstrap-icons@1.11.0/font/bootstrap-icons.css">
<link rel="stylesheet" href="assets/css/index.css?ver=0.9">
<link rel="canonical" href="https://bitgapps.io/extra.html">
<link rel="icon" type="image/png" href="images/favicon.png">
<script src="https://cdn.jsdelivr.net/npm/bootstrap@5.3.3/dist/js/bootstrap.bundle.min.js"></script>
<script async src="https://pagead2.googlesyndication.com/pagead/js/adsbygoogle.js?client=ca-pub-6267983170319694" crossorigin="anonymous"></script>
<script src="assets/js/index.js?ver=0.9"></script>
<script src="assets/js/block.js?ver=0.9"></script>
<script src="assets/js/views.js?ver=0.9"></script>
</head>
<body>
<svg xmlns="http://www.w3.org/2000/svg" style="display:none">
<symbol id="home" viewBox="0 0 512 512">
<path d="M240.1 4.2c9.8-5.6 21.9-5.6 31.8 0l171.8 98.1L448 104l0 .9 47.9 27.4c12.6 7.2 18.8 22 15.1 36s-16.4 23.8-30.9 23.8H32c-14.5 0-27.2-9.8-30.9-23.8s2.5-28.8 15.1-36L64 104.9V104l4.4-1.6L240.1 4.2zM64 224h64V416h40V224h64V416h48V224h64V416h40V224h64V420.3c.6 .3 1.2 .7 1.8 1.1l48 32c11.7 7.8 17 22.4 12.9 35.9S494.1 512 480 512H32c-14.1 0-26.5-9.2-30.6-22.7s1.1-28.1 12.9-35.9l48-32c.6-.4 1.2-.7 1.8-1.1V224z"/>
</symbol>
<symbol id="instruction" viewBox="0 0 384 512">
<path d="M0 448c0 35.3 28.7 64 64 64H224V384c0-17.7 14.3-32 32-32H384V64c0-35.3-28.7-64-64-64H64C28.7 0 0 28.7 0 64V448zM171.3 75.3l-96 96c-6.2 6.2-16.4 6.2-22.6 0s-6.2-16.4 0-22.6l96-96c6.2-6.2 16.4-6.2 22.6 0s6.2 16.4 0 22.6zm96 32l-160 160c-6.2 6.2-16.4 6.2-22.6 0s-6.2-16.4 0-22.6l160-160c6.2-6.2 16.4-6.2 22.6 0s6.2 16.4 0 22.6zM384 384H256V512L384 384z"/>
</symbol>
<symbol id="faq" viewBox="0 0 512 512">
<path d="M256 512A256 256 0 1 0 256 0a256 256 0 1 0 0 512zM169.8 165.3c7.9-22.3 29.1-37.3 52.8-37.3h58.3c34.9 0 63.1 28.3 63.1 63.1c0 22.6-12.1 43.5-31.7 54.8L280 264.4c-.2 13-10.9 23.6-24 23.6c-13.3 0-24-10.7-24-24V250.5c0-8.6 4.6-16.5 12.1-20.8l44.3-25.4c4.7-2.7 7.6-7.7 7.6-13.1c0-8.4-6.8-15.1-15.1-15.1H222.6c-3.4 0-6.4 2.1-7.5 5.3l-.4 1.2c-4.4 12.5-18.2 19-30.6 14.6s-19-18.2-14.6-30.6l.4-1.2zM224 352a32 32 0 1 1 64 0 32 32 0 1 1 -64 0z"/>
</symbol>
<symbol id="donate" viewBox="0 0 576 512">
<path d="M312 24V34.5c6.4 1.2 12.6 2.7 18.2 4.2c12.8 3.4 20.4 16.6 17 29.4s-16.6 20.4-29.4 17c-10.9-2.9-21.1-4.9-30.2-5c-7.3-.1-14.7 1.7-19.4 4.4c-2.1 1.3-3.1 2.4-3.5 3c-.3 .5-.7 1.2-.7 2.8c0 .3 0 .5 0 .6c.2 .2 .9 1.2 3.3 2.6c5.8 3.5 14.4 6.2 27.4 10.1l.9 .3 0 0c11.1 3.3 25.9 7.8 37.9 15.3c13.7 8.6 26.1 22.9 26.4 44.9c.3 22.5-11.4 38.9-26.7 48.5c-6.7 4.1-13.9 7-21.3 8.8V232c0 13.3-10.7 24-24 24s-24-10.7-24-24V220.6c-9.5-2.3-18.2-5.3-25.6-7.8c-2.1-.7-4.1-1.4-6-2c-12.6-4.2-19.4-17.8-15.2-30.4s17.8-19.4 30.4-15.2c2.6 .9 5 1.7 7.3 2.5c13.6 4.6 23.4 7.9 33.9 8.3c8 .3 15.1-1.6 19.2-4.1c1.9-1.2 2.8-2.2 3.2-2.9c.4-.6 .9-1.8 .8-4.1l0-.2c0-1 0-2.1-4-4.6c-5.7-3.6-14.3-6.4-27.1-10.3l-1.9-.6c-10.8-3.2-25-7.5-36.4-14.4c-13.5-8.1-26.5-22-26.6-44.1c-.1-22.9 12.9-38.6 27.7-47.4c6.4-3.8 13.3-6.4 20.2-8.2V24c0-13.3 10.7-24 24-24s24 10.7 24 24zM568.2 336.3c13.1 17.8 9.3 42.8-8.5 55.9L433.1 485.5c-23.4 17.2-51.6 26.5-80.7 26.5H192 32c-17.7 0-32-14.3-32-32V416c0-17.7 14.3-32 32-32H68.8l44.9-36c22.7-18.2 50.9-28 80-28H272h16 64c17.7 0 32 14.3 32 32s-14.3 32-32 32H288 272c-8.8 0-16 7.2-16 16s7.2 16 16 16H392.6l119.7-88.2c17.8-13.1 42.8-9.3 55.9 8.5zM193.6 384l0 0-.9 0c.3 0 .6 0 .9 0z"/>
</symbol>
<symbol id="contact" viewBox="0 0 512 512">
<path d="M256 64C150 64 64 150 64 256s86 192 192 192c17.7 0 32 14.3 32 32s-14.3 32-32 32C114.6 512 0 397.4 0 256S114.6 0 256 0S512 114.6 512 256v32c0 53-43 96-96 96c-29.3 0-55.6-13.2-73.2-33.9C320 371.1 289.5 384 256 384c-70.7 0-128-57.3-128-128s57.3-128 128-128c27.9 0 53.7 8.9 74.7 24.1c5.7-5 13.1-8.1 21.3-8.1c17.7 0 32 14.3 32 32v80 32c0 17.7 14.3 32 32 32s32-14.3 32-32V256c0-106-86-192-192-192zm64 192a64 64 0 1 0 -128 0 64 64 0 1 0 128 0z"/>
</symbol>
</svg>
<div id="liveAlert"></div>
<nav class="navbar navbar-expand-md bg-body-tertiary">
<div class="container-fluid">
<a class="navbar-brand silkscreen animate-text disabled" href="#">MicroGPlus</a>
<button class="navbar-toggler" type="button" data-bs-toggle="offcanvas" data-bs-target="#staticNavCanvas" aria-controls="staticNavCanvas" aria-expanded="false">
<span class="navbar-toggler-icon"></span>
</button>
<div class="collapse navbar-collapse" id="navbarText">
<ul class="navbar-nav me-auto mb-2 mb-md-0">
<li class="nav-item">
<a class="nav-link" href="https://bitgapps.io">Home</a>
</li>
<li class="nav-item">
<a class="nav-link" href="https://forum.xda-developers.com/t/custom-gapps-bitgapps-for-android.4012165">Development</a>
</li>
<li class="nav-item">
<a class="nav-link" href="https://bitgapps.io/faq.html">FAQs</a>
</li>
<li class="nav-item">
<a class="nav-link" href="mailto:info@bitgapps.io">Contact</a>
</li>
</ul>
<span class="navbar-text">
<a class="nav-link text-success fw-bold" href="https://www.paypal.me/kartikverma443"><i class="bi bi-coin me-1"></i>Donate</a>
</span>
</div>
</div>
</nav>
<div class="offcanvas offcanvas-start bg-light" data-bs-scroll="true" tabindex="-1" id="staticNavCanvas" style="width:320px">
<div class="offcanvas-header">
<p class="offcanvas-title fs-5">MicroGPlus</p>
<button type="button" class="btn-close text-reset" data-bs-dismiss="offcanvas" data-bs-target="#staticNavCanvas" aria-label="Close"></button>
</div>
<div class="offcanvas-body">
<div class="d-flex flex-column flex-shrink-0 p-3 bg-light" style="width:280px">
<a href="https://bitgapps.io" class="d-flex align-items-center mb-3 mb-md-0 me-md-auto link-dark text-decoration-none disabled">
<img alt="" width="32" src="images/foss.png" class="me-2">
<div class="lh-1">
<p class="fs-6 mb-0 text-dark lh-1">MicroGPlus</p>
<small style="color:#0081B4">Since 2018</small>
</div>
</a>
<hr>
<ul class="nav nav-pills flex-column mb-auto">
<li class="nav-item">
<a class="nav-link link-dark" href="https://bitgapps.io"><svg class="bi me-2" width="16" height="16"><use xlink:href="#home"/></svg>Home</a>
</li>
<li>
<a class="nav-link link-dark" href="https://forum.xda-developers.com/t/custom-gapps-bitgapps-for-android.4012165"><svg class="bi me-2" width="16" height="16"><use xlink:href="#instruction"/></svg>Development</a>
</li>
<li>
<a class="nav-link link-dark" href="https://bitgapps.io/faq.html"><svg class="bi me-2" width="16" height="16"><use xlink:href="#faq"/></svg>FAQs</a>
</li>
<li>
<a class="nav-link link-dark" href="mailto:info@bitgapps.io"><svg class="bi me-2" width="16" height="16"><use xlink:href="#contact"/></svg>Contact</a>
</li>
<li>
<a class="nav-link link-dark" href="https://www.paypal.me/kartikverma443"><svg class="bi me-2" width="16" height="16"><use xlink:href="#donate"/></svg>Donate</a>
</li>
<li>
<a class="nav-link link-dark" href="https://bitgapps.io/about.html"><i class="bi bi-stars me-2"></i>About</a>
</li>
</ul>
<hr>
<div class="dropdown">
<a href="https://bitgapps.io" class="d-flex align-items-center link-dark text-decoration-none dropdown-toggle" data-bs-toggle="dropdown" aria-expanded="false">
<img src="images/github.png" alt="" width="32" height="32" class="rounded-circle me-2">
<strong>Meet the Team</strong>
</a>
<ul class="dropdown-menu text-small shadow">
<li><a class="dropdown-item" href="https://github.com/TheHitMan7"><img src="images/hitman.png" alt="" width="32" height="32" class="rounded-circle me-2">TheHitMan7</a></li>
<li><a class="dropdown-item" href="https://github.com/starry-shivam"><img src="images/shivam.jpg" alt="" width="32" height="32" class="rounded-circle me-2">Kr Shivam</a></li>
<li><a class="dropdown-item" href="https://github.com/dimyze"><img src="images/mathur.jpg" alt="" width="32" height="32" class="rounded-circle me-2">Viraj Mathur</a></li>
</ul>
</div>
</div>
</div>
</div>
<main>
<!-- SECTION -->
<div class="position-relative overflow-hidden py-5 d-flex align-items-center" style="background:#f8fafc; min-height:75vh; color:#0f172a">
<div class="position-absolute top-0 start-0 translate-middle bg-primary opacity-5 rounded-circle d-none d-lg-block" style="width:500px; height:500px; filter:blur(100px)"></div>
<div class="position-absolute bottom-0 end-0 translate-middle-x bg-warning opacity-10 rounded-circle d-none d-lg-block" style="width:400px; height:400px; filter:blur(100px)"></div>
<div class="container position-relative z-1">
<div class="row align-items-center g-5">
<div class="col-lg-6 text-center text-lg-start">
<div class="badge px-3 py-2 rounded-pill mb-3 fs-7 fw-semibold tracking-wide border border-dark border-opacity-10" style="background:#e2e8f0; color:#334155">
<i class="bi bi-shield-check text-primary me-2"></i>FREE & OPEN SOURCE
</div>
<h1 class="display-4 fw-black text-dark mb-2 tracking-tight" style="letter-spacing:-1px; color:#0f172a !important">MicroGPlus</h1>
<p class="fs-4 fw-medium mb-4" style="color:#0284c7">Install MicroG with Ease</p>
<p class="fs-6 lh-lg mb-5" style="max-width:540px; color:#475569 !important">
microG is a free and open-source implementation of Google Play Services. It aims to provide a functional replacement for proprietary Google services on Android devices. It allows users to run applications that depend on Google Play Services.
</p>
<div class="d-flex flex-column flex-sm-row gap-3 justify-content-center justify-content-lg-start mb-5">
<button type="button" id="liveAlertBtn" onclick="topFunction()" class="btn btn-primary btn-lg px-4 py-3 fw-semibold shadow-sm custom-btn-primary" style="border-radius:12px; background:#2563eb; border-color:#2563eb">
<i class="bi bi-sliders2-vertical me-2"></i>Customization
</button>
<a role="button" class="btn btn-lg px-4 py-3 fw-semibold custom-btn-telegram-light" href="https://t.me/MicroGPlusChat" style="border-radius:12px">
<i class="bi bi-telegram me-2"></i>Telegram Community
</a>
</div>
<div class="pt-2 fs-7 d-flex align-items-center justify-content-center justify-content-lg-start" style="color:#64748b">
<span class="animate-bi-bounce me-2 d-inline-block">
<span class="badge rounded-pill bg-primary bg-opacity-10 p-2 d-flex align-items-center justify-content-center border border-primary border-opacity-25" style="width:32px; height:32px">
<i class="bi bi-arrow-down text-primary fw-bold fs-6"></i>
</span>
</span>
<span class="noto-sans ms-1">Grab files from the download section below.</span>
</div>
</div>
<div class="col-lg-6 d-flex justify-content-center order-first order-lg-last">
<div class="position-relative p-4 bg-white rounded-4 border border-dark border-opacity-10 shadow-lg transition-hover" style="max-width:380px">
<img class="img-fluid w-100" src="images/foss.png" alt="MicroGPlus" style="filter:drop-shadow(0 10px 20px rgba(0,0,0,0.06))">
</div>
</div>
</div>
</div>
</div>
<!-- SECTION -->
<div class="px-1 px-md-4 px-lg-5 py-4">
<div class="container-fluid py-md-4 py-lg-4">
<div class="row mb-4">
<div class="col-12">
<div class="d-inline-flex align-items-center justify-content-center rounded-3 mb-4" style="width:56px; height:56px; background-color:#e8f6ed">
<i style="color:#16a34a" class="fa-solid fa-cubes fs-3"></i>
</div>
<h2 class="display-5 fw-bold rubik text-dark mb-3">Why MicroGPlus?</h2>
<p class="text-muted fs-5 col-lg-7 px-0">
Discover the core features that make our platform flexible and reliable.
</p>
</div>
</div>
<div class="row row-cols-1 row-cols-md-2 row-cols-lg-3 g-4">
<!-- Feature Card -->
<div class="col">
<div class="card h-100 border-0 shadow-md rounded-4 p-3 bg-white lift-card">
<div class="card-body d-flex flex-column align-items-start">
<div class="d-flex align-items-center justify-content-center rounded-3 mb-3" style="width:56px; height:56px; background-color:rgba(71, 151, 177, 0.1)">
<i style="color:#4797B1" class="fa-sharp fa-solid fa-robot fs-4"></i>
</div>
<h3 class="card-title fs-5 fw-semibold text-dark mb-2">Android Support</h3>
<p class="card-text text-muted fw-normal small">
All Platforms and All Android Versions are Supported.
</p>
</div>
</div>
</div>
<!-- Feature Card -->
<div class="col">
<div class="card h-100 border-0 shadow-md rounded-4 p-3 bg-white lift-card">
<div class="card-body d-flex flex-column align-items-start">
<div class="d-flex align-items-center justify-content-center rounded-3 mb-3" style="width:56px; height:56px; background-color:rgba(185, 88, 165, 0.1)">
<i style="color:#B958A5" class="fa-solid fa-cubes fs-4"></i>
</div>
<h3 class="card-title fs-5 fw-semibold text-dark mb-2">Customizable Installation</h3>
<p class="card-text text-muted fw-normal small">
MicroGPlus can be installed from multiple environments with ease.
</p>
</div>
</div>
</div>
<!-- Feature Card -->
<div class="col">
<div class="card h-100 border-0 shadow-md rounded-4 p-3 bg-white lift-card">
<div class="card-body d-flex flex-column align-items-start">
<div class="d-flex align-items-center justify-content-center rounded-3 mb-3" style="width:56px; height:56px; background-color:rgba(1, 146, 103, 0.1)">
<i style="color:#019267" class="fa-brands fa-android fs-4"></i>
</div>
<h3 class="card-title fs-5 fw-semibold text-dark mb-2">Wide Support</h3>
<p class="card-text text-muted fw-normal small">
MicroGPlus offers flashable packages in many variations from Minimal to Variants.
</p>
</div>
</div>
</div>
<!-- Feature Card -->
<div class="col">
<div class="card h-100 border-0 shadow-md rounded-4 p-3 bg-white lift-card">
<div class="card-body d-flex flex-column align-items-start">
<div class="d-flex align-items-center justify-content-center rounded-3 mb-3" style="width:56px; height:56px; background-color:rgba(220, 53, 53, 0.1)">
<i style="color:#DC3535" class="fa-solid fa-arrows-rotate fs-4"></i>
</div>
<h3 class="card-title fs-5 fw-semibold text-dark mb-2">Seamless OTA Updates</h3>
<p class="card-text text-muted fw-normal small">
MicroGPlus comes with OTA survival support to provide you flash and forget experience.
</p>
</div>
</div>
</div>
<!-- Feature Card -->
<div class="col">
<div class="card h-100 border-0 shadow-md rounded-4 p-3 bg-white lift-card">
<div class="card-body d-flex flex-column align-items-start">
<div class="d-flex align-items-center justify-content-center rounded-3 mb-3" style="width:56px; height:56px; background-color:rgba(199, 128, 250, 0.1)">
<i style="color:#C780FA" class="fa-solid fa-puzzle-piece fs-4"></i>
</div>
<h3 class="card-title fs-5 fw-semibold text-dark mb-2">Dynamic Installer</h3>
<p class="card-text text-muted fw-normal small">
You can easily override between any MicroGPlus version without clean flash.
</p>
</div>
</div>
</div>
<!-- Feature Card -->
<div class="col">
<div class="card h-100 border-0 shadow-md rounded-4 p-3 bg-white lift-card">
<div class="card-body d-flex flex-column align-items-start">
<div class="d-flex align-items-center justify-content-center rounded-3 mb-3" style="width:56px; height:56px; background-color:rgba(244, 96, 96, 0.1)">
<i style="color:#F46060" class="fa-solid fa-code fs-4"></i>
</div>
<h3 class="card-title fs-5 fw-semibold text-dark mb-2">Module Installation</h3>
<p class="card-text text-muted fw-normal small">
MicroGPlus can also be installed as Magisk or KernelSU module beside recovery installation.
</p>
</div>
</div>
</div>
<!-- Feature Card -->
<div class="col">
<div class="card h-100 border-0 shadow-md rounded-4 p-3 bg-white lift-card">
<div class="card-body d-flex flex-column align-items-start">
<div class="d-flex align-items-center justify-content-center rounded-3 mb-3" style="width:56px; height:56px; background-color:rgba(71, 151, 177, 0.1)">
<i style="color:#4797B1" class="fa-solid fa-wand-magic-sparkles fs-4"></i>
</div>
<h3 class="card-title fs-5 fw-semibold text-dark mb-2">Smart Space</h3>
<p class="card-text text-muted fw-normal small">
This feature allows you to re-flash MicroGPlus even with insufficient space in system.
</p>
</div>
</div>
</div>
<!-- Feature Card -->
<div class="col">
<div class="card h-100 border-0 shadow-md rounded-4 p-3 bg-white lift-card">
<div class="card-body d-flex flex-column align-items-start">
<div class="d-flex align-items-center justify-content-center rounded-3 mb-3" style="width:56px; height:56px; background-color:rgba(255, 179, 0, 0.1)">
<i style="color:#FFB300" class="fa-solid fa-shield-halved fs-4"></i>
</div>
<h3 class="card-title fs-5 fw-semibold text-dark mb-2">Privileged Permission</h3>
<p class="card-text text-muted fw-normal small">
Providing the necessary permissions to the privileged apps.
</p>
</div>
</div>
</div>
<!-- Feature Card -->
<div class="col">
<div class="card h-100 border-0 shadow-md rounded-4 p-3 bg-white lift-card">
<div class="card-body d-flex flex-column align-items-start">
<div class="d-flex align-items-center justify-content-center rounded-3 mb-3" style="width:56px; height:56px; background-color:rgba(185, 88, 165, 0.1)">
<i style="color:#B958A5" class="fa-solid fa-face-smile fs-4"></i>
</div>
<h3 class="card-title fs-5 fw-semibold text-dark mb-2">Happy Community</h3>
<p class="card-text text-muted fw-normal small">
We have a friendly community that helps you get what you're looking for in MicroGPlus.
</p>
</div>
</div>
</div>
</div>
</div>
</div>
<!-- SECTION -->
<div class="px-1 px-md-4 px-lg-5 py-4">
<div class="container-fluid py-md-4 py-lg-4">
<div class="row mb-4">
<div class="col-12">
<div class="d-inline-flex align-items-center justify-content-center rounded-3 mb-4" style="width:56px; height:56px; background-color:#f3e8ff">
<i style="color:#7c3aed" class="fa-solid fa-layer-group fs-3"></i>
</div>
<h2 class="display-5 fw-bold rubik text-dark mb-3">Compatibility & Features</h2>
<p class="text-muted fs-5 col-lg-7 px-0">
Explore lightweight, tailored packages built to support every Android version.
</p>
</div>
</div>
<div class="row g-4 mb-4">
<!-- COLUMN -->
<div class="col-md-6">
<div class="bg-white border border-soft rounded-4 p-4 shadow-sm h-100">
<div class="d-flex align-items-center justify-content-between mb-4 pb-2 border-bottom">
<h3 class="h6 fw-bold tracking-tight text-dark m-0">Architectures</h3>
<span class="text-xs text-muted font-mono-tech">PLATFORM</span>
</div>
<div class="d-flex flex-column gap-2">
<div class="d-flex align-items-center justify-content-between py-2 px-3 bg-light rounded-3">
<span class="font-mono-tech text-sm fw-bold">ARM</span>
<span class="text-success bg-success bg-opacity-10 px-2 py-1 rounded-circle text-xs"><i class="bi bi-check2"></i></span>
</div>
<div class="d-flex align-items-center justify-content-between py-2 px-3 bg-light rounded-3">
<span class="font-mono-tech text-sm fw-bold">ARM64</span>
<span class="text-success bg-success bg-opacity-10 px-2 py-1 rounded-circle text-xs"><i class="bi bi-check2"></i></span>
</div>
<div class="d-flex align-items-center justify-content-between py-2 px-3 bg-light rounded-3 opacity-50">
<span class="font-mono-tech text-sm">x86</span>
<span class="text-muted text-xs"><i class="bi bi-x"></i></span>
</div>
<div class="d-flex align-items-center justify-content-between py-2 px-3 bg-light rounded-3 opacity-50">
<span class="font-mono-tech text-sm">x86-64</span>
<span class="text-muted text-xs"><i class="bi bi-x"></i></span>
</div>
</div>
</div>
</div>
<!-- COLUMN -->
<div class="col-md-6">
<div class="bg-white border border-soft rounded-4 p-4 shadow-sm h-100">
<div class="d-flex align-items-center justify-content-between mb-4 pb-2 border-bottom">
<h3 class="h6 fw-bold tracking-tight text-dark m-0">Android Versions</h3>
<span class="text-xs text-muted font-mono-tech">API 25 - 36</span>
</div>
<div class="row g-2">
<div class="col-6"><div class="p-2 bg-light rounded-3 text-sm"><span class="d-inline-block rounded-circle bg-success me-3" style="width:6px; height:6px"></span>Android 16.0</div></div>
<div class="col-6"><div class="p-2 bg-light rounded-3 text-sm"><span class="d-inline-block rounded-circle bg-success me-3" style="width:6px; height:6px"></span>Android 15.0</div></div>
<div class="col-6"><div class="p-2 bg-light rounded-3 text-sm"><span class="d-inline-block rounded-circle bg-success me-3" style="width:6px; height:6px"></span>Android 14.0</div></div>
<div class="col-6"><div class="p-2 bg-light rounded-3 text-sm"><span class="d-inline-block rounded-circle bg-success me-3" style="width:6px; height:6px"></span>Android 13.0</div></div>
<div class="col-6"><div class="p-2 bg-light rounded-3 text-sm"><span class="d-inline-block rounded-circle bg-success me-3" style="width:6px; height:6px"></span>Android 12.1</div></div>
<div class="col-6"><div class="p-2 bg-light rounded-3 text-sm"><span class="d-inline-block rounded-circle bg-success me-3" style="width:6px; height:6px"></span>Android 12.0</div></div>
<div class="col-6"><div class="p-2 bg-light rounded-3 text-sm"><span class="d-inline-block rounded-circle bg-success me-3" style="width:6px; height:6px"></span>Android 11.0</div></div>
<div class="col-6"><div class="p-2 bg-light rounded-3 text-sm"><span class="d-inline-block rounded-circle bg-success me-3" style="width:6px; height:6px"></span>Android 10.0</div></div>
</div>
<div class="mt-3 text-center text-xs text-muted">
<i class="bi bi-plus-circle me-1"></i>Legacy support for versions 9.0, 8.1, 8.0, and 7.1
</div>
</div>
</div>
</div>
<div class="row g-4 mb-4">
<!-- COLUMN -->
<div class="col-lg-8">
<div class="bg-white border border-soft rounded-4 p-4 shadow-sm h-100 d-flex flex-column justify-content-between">
<div>
<h3 class="h5 fw-bold text-dark mb-2">Flashable Package Variations</h3>
<p class="text-sm text-muted lh-base">
The core <strong class="text-dark">NLP (Minimal)</strong> package includes GmsCore, microG Services Framework (GSF), FakeStore and other essentials.
</p>
<p class="text-sm text-muted lh-base mt-2">
Advanced variants like <span class="font-mono-tech text-xs bg-light px-2 py-1 rounded text-primary">AUR, BSP, FDD, FOX, NEO, NOU and GPS</span> includes everything from Minimal with alternative App store client.
</p>
</div>
<div class="mt-0 pt-3 border-top d-flex align-items-center justify-content-between">
<span class="text-xs text-primary font-semibold">Explore alternative store integrations below.</span>
</div>
</div>
</div>
<!-- COLUMN -->
<div class="col-lg-4">
<div class="bg-white border border-soft rounded-4 p-4 shadow-sm h-100">
<h3 class="h6 fw-bold text-dark mb-2">Included F-Droid and it's Privileged Extension</h3>
<p class="text-sm text-muted lh-base m-0">
Privileged extension enables F-Droid to install and delete apps without needing "Unknown Sources" to be enabled
(e.g. Just like Google Play does). It also enables F-Droid to auto install updates in the background without the user
having to click "install".
</p>
</div>
</div>
<!-- COLUMN -->
<div class="col-lg-4">
<div class="bg-white border border-soft rounded-4 p-4 shadow-sm h-100">
<h3 class="h6 fw-bold text-dark mb-2">Seamless OTA Updates</h3>
<p class="text-sm text-muted lh-base m-0">
The OTA survival script allows you to update your current ROM to its latest version without worrying about
having to flash MicroGPlus again, delivering a true "flash and forget" experience. Powered by the latest
<strong class="text-dark">ADDOND Version 3</strong>.
</p>
</div>
</div>
<!-- COLUMN -->
<div class="col-lg-8">
<div class="bg-dark-vercel text-white rounded-4 p-4 shadow h-100">
<h3 class="h6 fw-bold mb-3 text-white">Alternate App Store Client Included</h3>
<div class="row g-3">
<div class="col-sm-4">
<div class="bg-white bg-opacity-10 border border-white border-opacity-10 rounded-3 p-3 h-100">
<div class="fw-bold text-sm mb-1 text-white">Droid-ify</div>
<div class="text-xs text-light opacity-75">Clean F-Droid client with Material You design language.</div>
</div>
</div>
<div class="col-sm-4">
<div class="bg-white bg-opacity-10 border border-white border-opacity-10 rounded-3 p-3 h-100">
<div class="fw-bold text-sm mb-1 text-white">Aurora Store</div>
<div class="text-xs text-light opacity-75">Anonymous gateway client to Google Play store items.</div>
</div>
</div>
<div class="col-sm-4">
<div class="bg-white bg-opacity-10 border border-white border-opacity-10 rounded-3 p-3 h-100">
<div class="fw-bold text-sm mb-1 text-white">Neo Store</div>
<div class="text-xs text-light opacity-75">An F-Droid client with modern UI and an arsenal of extra features.</div>
</div>
</div>
</div>
</div>
</div>
</div>
<div class="bg-white border border-soft rounded-3 p-4 text-xs text-muted">
<div class="row g-3 text-center text-sm-start">
<div class="col-sm-6 col-md-3">
<span class="fw-bold text-dark d-block mb-1">Vanilla PlayStore</span>
Includes vanilla PlayStore to safely handle native In-App purchases.
</div>
<div class="col-sm-6 col-md-3">
<span class="fw-bold text-dark d-block mb-1">Google Maps API</span>
Native Maps framework v1 support legacy compatibility.
</div>
<div class="col-sm-6 col-md-3">
<span class="fw-bold text-dark d-block mb-1">Footprint Efficient</span>
Relatively small size for easy Download and Installation.
</div>
<div class="col-sm-6 col-md-3">
<span class="fw-bold text-dark d-block mb-1">Sync Adapter</span>
Includes standalone Google Contacts Sync Adapter as Addon.
</div>
</div>
</div>
</div>
</div>
<!-- SECTION -->
<div class="px-1 px-md-4 px-lg-5 py-4">
<div class="container-fluid py-md-4 py-lg-4">
<div class="row mb-4">
<div class="col-12">
<div class="d-inline-flex align-items-center justify-content-center rounded-3 mb-4" style="width:56px; height:56px; background-color:#ffe4e6">
<i style="color:#e11d48" class="fa-solid fa-terminal fs-3"></i>
</div>
<h2 class="display-5 fw-bold rubik text-dark mb-3">Installation Instructions</h2>
<p class="text-muted fs-5 col-lg-7 px-0">
Follow the correct order to avoid crashes and ensure a clean boot.
</p>
</div>
</div>
<div class="card border-0 shadow-sm rounded-4 overflow-hidden mb-4" style="background:linear-gradient(135deg, #e6ffea 0%, #f4fff6 100%); border-left:5px solid #28a745 !important">
<div class="card-body p-4 p-md-5">
<div class="row align-items-center">
<div class="col-12">
<h2 class="fw-bold text-success mb-3">Seamless microG Sideloading</h2>
<p class="text-secondary lead mb-0" style="font-size:1.1rem; line-height:1.6">
MicroGPlus is a convenient way to sideload microG into custom ROM without having to deal with the extra hassle.
You can easily override between any MicroGPlus version without clean flash. You can also remove microG components
from custom ROM with our uninstaller too. Regular updates cover the latest microG version with bugs fixed on time.
</p>
</div>
</div>
</div>
</div>
<div class="row g-4">
<!-- First Time Installation -->
<div class="col-md-7">
<div class="card h-100 border-0 shadow-sm rounded-4 p-4">
<div class="d-flex align-items-center mb-4">
<div class="bg-primary bg-opacity-10 text-primary rounded-3 p-2 me-3">
<i class="fa-solid fa-download fa-xl"></i>
</div>
<div>
<h3 class="fs-4 fw-bold mb-0 text-dark">First Time Installation</h3>
<small class="text-muted">Fresh setup instructions</small>
</div>
</div>
<div class="position-relative ps-2">
<!-- Step 1 -->
<div class="d-flex mb-4">
<div class="fw-bold text-primary me-3 fs-5">01</div>
<div>
<h3 class="fs-6 fw-bold mb-1">Flash via Recovery</h3>
<p class="text-secondary small mb-0">MicroGPlus should be installed via recovery immediately after installing Custom ROM.</p>
</div>
</div>
<!-- Step 2 -->
<div class="d-flex mb-4">
<div class="fw-bold text-danger me-3 fs-5">02</div>
<div>
<h3 class="fs-6 fw-bold mb-1 text-danger">Do Not Boot to System Yet</h3>
<p class="text-secondary small mb-0"> If you reboot into system before installing microG components, you must factory reset and then install them, otherwise expect crashes.</p>
</div>
</div>
<!-- Step 3 -->
<div class="d-flex">
<div class="fw-bold text-primary me-3 fs-5">03</div>
<div>
<h3 class="fs-6 fw-bold mb-1">Grant Permissions</h3>
<p class="text-secondary small mb-3">Rooting via Magisk or KernelSU handles permissions automatically. Otherwise, run the fallback terminal command:</p>
<!-- Code Block -->
<div class="bg-dark rounded-3 p-3 position-relative d-flex justify-content-between align-items-center text-start">
<code class="text-info font-monospace small">adb shell /system/bin/runtime.sh</code>
<button class="btn btn-sm btn-outline-secondary border-0 py-0 text-white-50" title="Copy code">
<i class="fa-regular fa-copy"></i>
</button>
</div>
</div>
</div>
</div>
<!-- Alert -->
<div class="alert alert-success border-0 rounded-3 mt-4 mb-0 d-flex align-items-start" style="background-color:#f0fbf7">
<i class="fa-solid fa-lightbulb text-success mt-1 me-3"></i>
<div>
<strong class="text-success small d-block mb-1">Helpful Tip</strong>
<p class="text-secondary small mb-0">Always loop back or reboot directly to recovery mode after flashing your Custom ROM for a fresh installation environment.</p>
</div>
</div>
</div>
</div>
<!-- Upgrade / Dirty Flash Installation -->
<div class="col-md-5">
<div class="card h-100 border-0 shadow-sm rounded-4 p-4 d-flex flex-column justify-content-between">
<div class="d-flex flex-column gap-3">
<div class="d-flex align-items-center mb-2">
<div class="bg-warning bg-opacity-10 text-warning rounded-3 p-2 me-3">
<i class="fa-solid fa-arrows-rotate fa-xl"></i>
</div>
<div>
<h3 class="fs-4 fw-bold mb-0 text-dark">Updates & Maintenance</h3>
<small class="text-muted">Subsequent installations</small>
</div>
</div>
<div>
<h3 class="fs-6 fw-bold mb-2">Installing for the second time and so on?</h3>
<p class="text-secondary small mb-0">Upgrading packages or re-flashing software on top of your existing base does not wipe your active user data environment.</p>
</div>
<div class="text-center py-5 my-1 text-muted bg-success rounded-3 bg-opacity-10">
<i class="bi bi-shield-check display-5 text-success opacity-75"></i>
<div class="small fw-semibold mt-1 text-success text-opacity-75">Data Preservation Active</div>
</div>
</div>
<!-- Dirty Flash -->
<div class="alert alert-warning border-0 rounded-3 mt-4 mb-0 d-flex align-items-start" style="background-color:#fff9f3">
<i class="fa-solid fa-triangle-exclamation text-warning mt-1 me-3"></i>
<div>
<strong class="text-warning small d-block mb-1">Dirty Flash Supported</strong>
<p class="text-secondary small mb-0">Re-flashing the exact same package configuration or upgrading to the latest stable release build does not require a factory reset cycle.</p>
</div>
</div>
</div>
</div>
</div>
</div>
</div>
<!-- SECTION -->
<div class="px-1 px-md-4 px-lg-5 py-4">
<div class="container-fluid py-md-4 py-lg-4">
<div class="row mb-4 text-start">
<div class="col-12">
<div class="d-inline-flex align-items-center justify-content-center rounded-3 mb-4" style="width:56px; height:56px; background-color:#fef3c7">
<i style="color:#d97706" class="fa-solid fa-bolt fs-3"></i>
</div>
<h2 class="display-5 fw-bold rubik text-dark mb-3">Flash & Forget</h2>
<p class="text-muted fs-5 col-lg-7 px-0">
Zero storage issues, clean removal options, and seamless ROM updates.
</p>
</div>
</div>
<div class="alert alert-primary d-flex align-items-center justify-content-center border-0 rounded-3 mb-4 shadow-sm" role="alert">
<i class="bi bi-info-circle-fill me-2 fs-5"></i>
<div class="fw-medium text-center">
Flash via recovery (like TWRP, LineageOS Recovery, etc.) for the most stable installation.
</div>
</div>
<div class="accordion accordion-flush rounded-3 shadow-sm border overflow-hidden">
<div class="accordion-item">
<h2 class="accordion-header">
<div class="accordion-button fw-semibold bg-body text-dark" aria-expanded="true">
<i class="bi bi-layers-half text-primary me-2"></i>Module Installation & Compatibility Details
</div>
</h2>
<div class="accordion-collapse collapse show">
<div class="accordion-body bg-body-tertiary lh-base text-secondary">
<p class="mb-3">Module installation is back. Same builds can be installed as a <strong>Magisk</strong> or <strong>KernelSU</strong> module.</p>
<div class="alert alert-warning border-0 rounded-3 py-2 px-3 mb-3 d-flex align-items-start small" role="alert">
<i class="bi bi-exclamation-triangle-fill me-2 mt-0.5"></i>
<div>
<p class="mb-0">
<strong>Important Note:</strong> Keep in mind, module installation has its own downside. For this reason, we highly prefer installation from recovery like TWRP, LineageOS Recovery, etc. However it is up to you what you want to proceed with. When installed as module, do not enable KSU <code>umount modules</code> option for microG components under App Profile. It will cause crashes and APKs not found.
</p>
</div>
</div>
<p class="mb-0">
MicroGPlus includes both functionalities in one package. Perks of module installation, required free space is no longer an issue. You can also remove Google Apps installation. Always survive ROM OTA upgrade with flash and forget experience. <span class="text-danger-emphasis fw-medium">Do not disable module, otherwise expect crashes.</span> An edge case for some latest version of KernelSU or forks explained below.
</p>
</div>
</div>
</div>
<div class="accordion-item">
<h2 class="accordion-header">
<div class="accordion-button fw-semibold bg-body text-dark" aria-expanded="true">
<i class="bi bi-shield-exclamation text-warning me-2"></i>Metamodule Requirements (KernelSU & Forks)
</div>
</h2>
<div class="accordion-collapse collapse show">
<div class="accordion-body bg-body-tertiary lh-base text-secondary">
<p class="mb-3">
You might need a <strong>metamodule</strong> installed before installing this as module. Some latest version of KernelSU or forks require metamodule for modules that adds or update files in system without this the module files will not be loaded after reboot. Also when this flashed as module first before flashing a metamodule, this will also cause module files to not load after reboot.
</p>
<div class="alert alert-danger border-0 rounded-3 py-2 px-3 mb-0 small" role="alert">
<p class="mb-0"><i class="bi bi-arrow-clockwise me-1"></i>
Once a metamodule is installed, it blocks installation of further modules until device is rebooted and metamodule is initialized. This will ensure that the modules depending on the metamodule function properly.
</p>
</div>
</div>
</div>
</div>
</div>
</div>
</div>
<!-- SECTION -->
<div class="px-1 px-md-4 px-lg-5 py-4" style="background:#e6fde9">
<div class="container-fluid py-md-4 py-lg-4">
<div class="row mb-4 text-start">
<div class="col-12">
<div class="d-inline-flex align-items-center justify-content-center rounded-3 mb-4" style="width:56px; height:56px; background-color:#d1fae5">
<i style="color:#047857" class="fa-solid fa-file-arrow-down fs-3"></i>
</div>
<h2 class="display-5 fw-bold rubik text-dark mb-3">Downloads Section</h2>
<p class="text-muted fs-5 col-lg-7 px-0">
Synchronized directly with upstream GmsCore release.
</p>
</div>
</div>
<div class="d-flex align-items-center justify-content-center text-center px-4 py-3 mb-5 rounded-4 shadow-sm" style="background-color:#ffffff; border:1px solid rgba(220, 116, 116, 0.15)">
<p class="text-secondary small mb-0 fw-medium">
<i class="bi bi-heart-fill text-danger me-2"></i>You can support us by whitelisting our URL. The advertisement revenue supports the projects efforts and costs a little resources to keep online.
</p>
</div>
<div class="row g-3 g-md-4 g-lg-5 align-items-center">
<div class="col-lg-7 d-flex flex-column justify-content-center">
<div class="position-relative overflow-hidden rounded-4 p-3 bg-white shadow-sm transition-all duration-300 hover-lift border border-light-subtle">
<a href="#" data-bs-toggle="modal" data-bs-target="#modalFoss" class="d-block position-relative group text-decoration-none">
<img alt="" class="img-fluid rounded-3 w-100" src="images/fosslist.png" style="transition:transform 0.4s cubic-bezier(0.16, 1, 0.3, 1)">
<div class="position-absolute inset-0 top-0 start-0 w-100 h-100 d-flex align-items-center justify-content-center bg-dark bg-opacity-10 opacity-0 hover-opacity-100 transition-all rounded-3" style="transition:0.3s ease">
<span class="btn btn-sm btn-white shadow-sm rounded-pill px-3 py-2 border-0 fw-medium">
<i class="bi bi-arrows-fullscreen me-3 small"></i>Click to Zoom
</span>
</div>
</a>
</div>
<div class="text-center mt-3">
<p class="small mb-0 text-zoom"><i class="bi bi-info-circle me-2"></i>Click on the image to zoom</p>
</div>
</div>
<div class="col-lg-5">
<div class="d-flex flex-column h-100 ps-lg-3">
<div class="mb-4 pb-3 border-bottom" style="border-color:rgba(220, 116, 116, 0.2) !important">
<h2 class="fs-4 fw-extrabold mb-1 text-dark tracking-tight">Select Package</h2>
<p class="sand-sans small mb-0 tracking-wider fw-semibold" style="color:#dc7474; font-size:0.75rem">Choose a MicroGPlus version to download</p>
</div>
<div class="row row-cols-2 g-2 mb-4">
<div class="col">
<input class="btn-check" type="radio" name="downloadRadioFile" id="radioFileAUR" value="https://github.com/BiTGApps/release/releases/download/20260517-121824-extra/microG-Installer-20260517-121824-AUR-v0.3.15.zip">
<label class="btn btn-select w-100 text-start py-9 px-3 silkscreen" for="radioFileAUR">AUR</label>
</div>
<div class="col">
<input class="btn-check" type="radio" name="downloadRadioFile" id="radioFileBSP" value="https://github.com/BiTGApps/release/releases/download/20260517-121824-extra/microG-Installer-20260517-121824-BSP-v0.3.15.zip">
<label class="btn btn-select w-100 text-start py-9 px-3 silkscreen" for="radioFileBSP">BSP</label>
</div>
<div class="col">
<input class="btn-check" type="radio" name="downloadRadioFile" id="radioFileFDD" value="https://github.com/BiTGApps/release/releases/download/20260517-121824-extra/microG-Installer-20260517-121824-FDD-v0.3.15.zip">
<label class="btn btn-select w-100 text-start py-9 px-3 silkscreen" for="radioFileFDD">FDD</label>
</div>
<div class="col">
<input class="btn-check" type="radio" name="downloadRadioFile" id="radioFileFOX" value="https://github.com/BiTGApps/release/releases/download/20260517-121824-extra/microG-Installer-20260517-121824-FOX-v0.3.15.zip">
<label class="btn btn-select w-100 text-start py-9 px-3 silkscreen" for="radioFileFOX">FOX</label>
</div>
<div class="col">
<input class="btn-check" type="radio" name="downloadRadioFile" id="radioFileGPS" value="https://github.com/BiTGApps/release/releases/download/20260517-121824-extra/microG-Installer-20260517-121824-GPS-v0.3.15.zip">
<label class="btn btn-select w-100 text-start py-9 px-3 silkscreen" for="radioFileGPS">GPS</label>
</div>
<div class="col">
<input class="btn-check" type="radio" name="downloadRadioFile" id="radioFileNEO" value="https://github.com/BiTGApps/release/releases/download/20260517-121824-extra/microG-Installer-20260517-121824-NEO-v0.3.15.zip">
<label class="btn btn-select w-100 text-start py-9 px-3 silkscreen" for="radioFileNEO">NEO</label>
</div>
<div class="col">
<input class="btn-check" type="radio" name="downloadRadioFile" id="radioFileNLP" value="https://github.com/BiTGApps/release/releases/download/20260517-121824-extra/microG-Installer-20260517-121824-NLP-v0.3.15.zip">
<label class="btn btn-select w-100 text-start py-9 px-3 silkscreen" for="radioFileNLP">NLP</label>
</div>
<div class="col">
<input class="btn-check" type="radio" name="downloadRadioFile" id="radioFileNOU" value="https://github.com/BiTGApps/release/releases/download/20260517-121824-extra/microG-Installer-20260517-121824-NOU-v0.3.15.zip">
<label class="btn btn-select w-100 text-start py-9 px-3 silkscreen" for="radioFileNOU">NOU</label>
</div>
</div>
<div class="d-flex gap-2 mb-3">
<button type="button" class="btn btn-dark w-100 py-9 border-0 rounded-3 fw-medium tracking-wide shadow-sm btn-hover" onclick="downloadRadioFile()">
<i class="bi bi-cloud-download me-2"></i>Download
</button>
<button type="button" class="btn btn-white text-secondary border border-light-subtle px-3 py-9 rounded-3 hover-bg-light shadow-sm" onclick="resetRadioFile()">Reset</button>
</div>
<p class="text-center silkscreen small mt-3 pt-2 mb-0 text-thanks tracking-widest text-uppercase" style="font-size:0.65rem">
Thanks for choosing MicroGPlus!
</p>
</div>
</div>
</div>
</div>
</div>
<div class="modal fade" id="modalFoss" tabindex="-1" aria-hidden="true">
<div class="modal-dialog modal-dialog-centered modal-xl">
<div class="modal-content bg-transparent border-0">
<div class="modal-body p-0 position-relative text-center">
<button type="button" class="btn-close btn-close-white position-absolute top-0 end-0 m-3 z-3 shadow-none" data-bs-dismiss="modal" aria-label="Close"></button>
<img alt="" src="images/fosslist.png" class="img-fluid rounded-4 shadow-lg bg-white">
</div>
</div>
</div>
</div>
<!-- SECTION -->
<div class="px-1 px-md-4 px-lg-5 py-4 text-center">
<div class="container-fluid py-md-4 py-lg-4">
<div class="row mb-4 text-start">
<div class="col-12">
<div class="d-inline-flex align-items-center justify-content-center rounded-3 mb-4" style="width:56px; height:56px; background-color:#fce7f3">
<i style="color:#c026d3" class="fa-solid fa-wand-magic-sparkles fs-3"></i>
</div>
<h2 class="display-5 fw-bold rubik text-dark mb-3">Custom Build Generator</h2>
<p class="text-muted fs-5 col-lg-7 px-0">
Generate user configured package using the latest Free and Opensource Apps.
</p>
</div>
</div>
<p class="text-start text-secondary fs-6 lh-base mb-4 px-0">
You can now build MicroG Installer Package with YOUR choice of Free and Opensource Apps with fewer clicks and no creation limits. These custom builds are securely hosted on a dedicated server. Please visit <a class="text-decoration-none" href="https://apilevels.com/">apilevels.com</a> website to know which Android version goes with which API level. To know more about selected FOSS application, click on the learn more button next to it.
</p>
<div class="card border-0 bg-white shadow-sm p-4 mb-4 mx-auto w-100" style="border-radius:14px; background:#ffffff; border-left:4px solid #f59e0b !important">
<div class="d-flex align-items-center text-start gap-3">
<div class="bg-warning-subtle text-warning rounded-circle d-flex align-items-center justify-content-center flex-shrink-0" style="width:48px; height:48px">
<i class="bi bi-heart-fill fs-5"></i>
</div>
<div>
<p class="fw-bold fs-6 text-dark mb-1">Help Keep the Lights On!</p>
<p class="text-muted small mb-0 lh-sm">
Running these servers costs money, and this project is entirely funded by ad revenue. If you enjoy using our work, please consider disabling your ad blocker for us. It keeps the lights on and the project free for everyone!
</p>
</div>
</div>
</div>
<div class="d-inline-flex align-items-center gap-2 mb-4 bg-danger-subtle text-danger px-3 py-1 rounded-pill small fw-bold text-uppercase">
<i class="bi bi-gear-wide-connected fa-spin"></i>Core Server Pipeline & Execution
</div>
<div class="row g-3 text-start text-secondary small lh-base mb-3">
<div class="col-md-6 col-lg-3">
<div class="p-3 bg-white rounded-3 border border-light-subtle shadow-xs h-100">
<span class="d-block fw-bold text-dark mb-1"><i class="bi bi-ui-checks-grid text-success me-1"></i>Requirements & Queues</span>
You need to use pre-defined options from below to make build request. Enter a username of your choice, it must be exactly <strong>seven alphanumeric characters</strong> contain only letters and numbers.
</div>
</div>
<div class="col-md-6 col-lg-3">
<div class="p-3 bg-white rounded-3 border border-light-subtle shadow-xs h-100">
<span class="d-block fw-bold text-dark mb-1"><i class="bi bi-hourglass-split text-warning me-1"></i>Ultra-Fast Delivery</span>
Our server CronJob runs after every two minutes. You will get your build done in less than a minute. Build server will now accept all incoming requests and they will be sorted and processed in random order.
</div>
</div>
<div class="col-md-6 col-lg-3">
<div class="p-3 bg-white rounded-3 border border-light-subtle shadow-xs h-100">
<span class="d-block fw-bold text-dark mb-1"><i class="bi bi-folder2-open text-primary me-1"></i>Manifest Storage</span>
You will also get your folder based on provided username created on server within CronJob time frame. From this folder you can access both older and newer builds. Each build has its own text file containing list of free and opensource apps added in that specific package.
</div>
</div>
<div class="col-md-6 col-lg-3">
<div class="p-3 bg-white rounded-3 border border-light-subtle shadow-xs h-100">
<span class="d-block fw-bold text-dark mb-1"><i class="bi bi-exclamation-triangle-fill text-danger me-1"></i>Storage & Lifespan</span>
Once disk space of the build server reaches a critical level, previous builds will be removed including folder based on the provided username to maintain performance.
</div>
</div>
</div>
<h3 class="pt-2 mb-4 fs-4">
<span class="badge bg-primary-subtle text-primary border border-primary-subtle px-3 py-2 rounded-2 fw-medium text-wrap sand-sans">
Fill below form to make build request!
</span>
</h3>
<form id="buildForm-1" class="mb-3 modern-tech-form text-start" action="https://build.bitgapps.io/marvin.php" method="POST">
<!-- ROW -->
<div class="row g-4 mb-4">
<div class="col-md-4">
<div class="card modern-input-card h-100">
<div class="card-body">
<div class="d-flex align-items-center gap-3 mb-3">
<span class="icon-form bg-rose-soft"><i class="fa-solid fa-user-secret"></i></span>
<label for="client" class="form-label card-title fs-5 mb-0 fw-semibold">Enter Username</label>
</div>
<input type="text" id="client" name="USR" class="form-control form-control-lg custom-input" placeholder="e.g., hitman7">
</div>
</div>
</div>
<div class="col-md-4">
<div class="card modern-input-card h-100">
<div class="card-body">
<div class="d-flex align-items-center gap-3 mb-3">
<span class="icon-form bg-sage-soft"><i class="fa-solid fa-key"></i></span>
<label for="admin-token" class="form-label card-title fs-5 mb-0 fw-semibold">Admin Token</label>
</div>
<input type="password" id="admin-token" name="ADMIN_TOKEN" class="form-control form-control-lg custom-input" placeholder="••••••••••••••••">
<div class="form-text mt-2 text-danger-emphasis fw-medium fs-7">
<i class="fa-solid fa-circle-exclamation me-2"></i>This field is restricted for server admins.
</div>
</div>
</div>
</div>
<div class="col-md-4">
<div class="card modern-input-card h-100">
<div class="card-body">
<div class="d-flex align-items-center gap-3 mb-3">
<span class="icon-form bg-amber-soft"><i class="fa-solid fa-shield-halved"></i></span>
<label for="user-token" class="form-label card-title fs-5 mb-0 fw-semibold">Builder Token</label>
</div>
<input type="password" id="user-token" name="USER_TOKEN" class="form-control form-control-lg custom-input" placeholder="••••••••••••••••">
<div class="form-text mt-2 text-danger-emphasis fw-medium fs-7">
<!-- <i class="fa-solid fa-circle-exclamation me-2"></i>Enter the secret builder token. -->
<i class="fa-solid fa-circle-exclamation me-2"></i>This field is restricted for server admins.
</div>
</div>
</div>
</div>
</div>
<!-- ROW -->
<div class="row g-4 mb-4">
<div class="col-md-5">
<div class="card modern-input-card h-100">
<div class="card-body">
<div class="d-flex align-items-center gap-3 mb-3">
<span class="icon-form bg-blue-soft"><i class="fa-sharp fa-solid fa-robot"></i></span>
<p class="card-title fs-5 mb-0 fw-semibold">Select Android Platform</p>
</div>
<div class="d-flex flex-wrap gap-2">
<input type="radio" class="btn-check" id="ARMv7" name="Platform" value="ARM">
<label for="ARMv7" class="btn custom-selector-btn">ARM</label>
<input type="radio" class="btn-check" id="ARMv8" name="Platform" value="ARM64">
<label for="ARMv8" class="btn custom-selector-btn">ARM64</label>
</div>
</div>
</div>
</div>
<div class="col-md-7">
<div class="card modern-input-card h-100">
<div class="card-body">
<div class="d-flex align-items-center gap-3 mb-3">
<span class="icon-form bg-cyan-soft"><i class="fa-solid fa-wand-magic-sparkles"></i></span>
<p class="card-title fs-5 mb-0 fw-semibold">Select Build Count</p>
</div>
<div class="d-flex flex-wrap gap-2">
<input type="radio" class="btn-check" id="1" name="Counter" value="1">
<label for="1" class="btn custom-selector-btn square">1</label>
<input type="radio" class="btn-check" id="2" name="Counter" value="2">
<label for="2" class="btn custom-selector-btn square">2</label>
<input type="radio" class="btn-check" id="3" name="Counter" value="3">
<label for="3" class="btn custom-selector-btn square">3</label>
<input type="radio" class="btn-check" id="4" name="Counter" value="4">
<label for="4" class="btn custom-selector-btn square">4</label>
<input type="radio" class="btn-check" id="5" name="Counter" value="5">
<label for="5" class="btn custom-selector-btn square">5</label>
<input type="radio" class="btn-check" id="6" name="Counter" value="6">
<label for="6" class="btn custom-selector-btn square">6</label>
<input type="radio" class="btn-check" id="7" name="Counter" value="7">
<label for="7" class="btn custom-selector-btn square">7</label>
<input type="radio" class="btn-check" id="8" name="Counter" value="8">
<label for="8" class="btn custom-selector-btn square">8</label>
<input type="radio" class="btn-check" id="9" name="Counter" value="9">
<label for="9" class="btn custom-selector-btn square">9</label>
</div>
<div class="form-text mt-2 text-danger-emphasis fw-medium fs-7">
<i class="fa-solid fa-circle-exclamation me-2"></i>Always set Build Count to <strong>1</strong>.
</div>
</div>
</div>
</div>
</div>
<!-- ROW -->
<div class="card modern-input-card mb-4">
<div class="card-body">
<div class="d-flex align-items-center gap-3 mb-3">
<span class="icon-form bg-green-soft"><i class="fa-brands fa-android"></i></span>
<p class="card-title fs-5 mb-0 fw-semibold">Select Android & API Version</p>
</div>
<div class="row g-3">
<div class="col-12">
<div class="version-label mb-2">Android Version</div>
<div class="d-flex flex-wrap gap-2 mb-3">
<input type="radio" class="btn-check" id="VER36" name="Version" value="16.0.0">
<label for="VER36" class="btn custom-selector-btn long">16.0.0</label>
<input type="radio" class="btn-check" id="VER35" name="Version" value="15.0.0">
<label for="VER35" class="btn custom-selector-btn long">15.0.0</label>
<input type="radio" class="btn-check" id="VER34" name="Version" value="14.0.0">
<label for="VER34" class="btn custom-selector-btn long">14.0.0</label>
<input type="radio" class="btn-check" id="VER33" name="Version" value="13.0.0">
<label for="VER33" class="btn custom-selector-btn long">13.0.0</label>
<input type="radio" class="btn-check" id="VER32" name="Version" value="12.1.0">
<label for="VER32" class="btn custom-selector-btn long">12.1.0</label>
<input type="radio" class="btn-check" id="VER31" name="Version" value="12.0.0">
<label for="VER31" class="btn custom-selector-btn long">12.0.0</label>
<input type="radio" class="btn-check" id="VER30" name="Version" value="11.0.0">
<label for="VER30" class="btn custom-selector-btn long">11.0.0</label>
<input type="radio" class="btn-check" id="VER29" name="Version" value="10.0.0">
<label for="VER29" class="btn custom-selector-btn long">10.0.0</label>
<input type="radio" class="btn-check" id="VER28" name="Version" value="9.0.0">
<label for="VER28" class="btn custom-selector-btn long">9.0.0</label>
<input type="radio" class="btn-check" id="VER27" name="Version" value="8.1.0">
<label for="VER27" class="btn custom-selector-btn long">8.1.0</label>
<input type="radio" class="btn-check" id="VER26" name="Version" value="8.0.0">
<label for="VER26" class="btn custom-selector-btn long">8.0.0</label>
<input type="radio" class="btn-check" id="VER25" name="Version" value="7.1.2">
<label for="VER25" class="btn custom-selector-btn long">7.1.2</label>
<input type="radio" class="btn-check" id="VER24" name="Version" value="7.1.1">
<label for="VER24" class="btn custom-selector-btn long">7.1.1</label>
</div>
</div>
<div class="col-12">
<div class="version-label mb-2">API Version</div>
<div class="d-flex flex-wrap gap-2">
<input type="radio" class="btn-check" id="36" name="API" value="36">
<label for="36" class="btn custom-selector-btn square">36</label>
<input type="radio" class="btn-check" id="35" name="API" value="35">
<label for="35" class="btn custom-selector-btn square">35</label>
<input type="radio" class="btn-check" id="34" name="API" value="34">
<label for="34" class="btn custom-selector-btn square">34</label>
<input type="radio" class="btn-check" id="33" name="API" value="33">
<label for="33" class="btn custom-selector-btn square">33</label>
<input type="radio" class="btn-check" id="32" name="API" value="32">
<label for="32" class="btn custom-selector-btn square">32</label>
<input type="radio" class="btn-check" id="31" name="API" value="31">
<label for="31" class="btn custom-selector-btn square">31</label>
<input type="radio" class="btn-check" id="30" name="API" value="30">
<label for="30" class="btn custom-selector-btn square">30</label>
<input type="radio" class="btn-check" id="29" name="API" value="29">
<label for="29" class="btn custom-selector-btn square">29</label>
<input type="radio" class="btn-check" id="28" name="API" value="28">
<label for="28" class="btn custom-selector-btn square">28</label>
<input type="radio" class="btn-check" id="27" name="API" value="27">
<label for="27" class="btn custom-selector-btn square">27</label>
<input type="radio" class="btn-check" id="26" name="API" value="26">
<label for="26" class="btn custom-selector-btn square">26</label>
<input type="radio" class="btn-check" id="25" name="API" value="25">
<label for="25" class="btn custom-selector-btn square">25</label>
<input type="radio" class="btn-check" id="24" name="API" value="24">
<label for="24" class="btn custom-selector-btn square">24</label>
</div>
</div>
</div>
</div>
</div>
<!-- ROW -->
<div class="card modern-input-card mb-4">
<div class="card-body">
<div class="d-flex align-items-center gap-3 mb-3">
<span class="icon-form bg-pink-soft"><i class="fa-solid fa-lightbulb"></i></span>
<p class="card-title fs-5 mb-0 fw-semibold">Select Free and Opensource Apps</p>
</div>
<div class="row row-cols-1 row-cols-sm-2 row-cols-md-3 row-cols-lg-4 g-3">
<!-- COLUMN -->
<div class="col">
<input type="hidden" value="0" name="AuroraStore">
<input type="checkbox" class="btn-check" id="AuroraStore" name="AuroraStore" value="1">
<label for="AuroraStore" class="app-selection-card d-flex flex-column h-100 p-3 rounded border text-start justify-content-between position-relative">
<div class="d-flex align-items-start justify-content-between mb-2">
<span class="check-icon border rounded-circle d-flex align-items-center justify-content-center text-white bg-light">
<i class="fa-solid fa-check fs-7"></i>
</span>
</div>
<div>
<span class="h6 d-block text-dark fw-medium mb-1">AuroraStore</span>
<small class="text-muted d-block mb-3">Alternate F-Droid App Store Client.</small>
</div>
<div class="text-end z-3 mt-auto">
<a class="btn btn-link p-0 text-decoration-none text-muted small hover-primary" href="https://f-droid.org/en/packages/com.aurora.store/">
Learn more<i class="fa-solid fa-arrow-up-right-from-square ms-2 small"></i>
</a>
</div>
</label>
<input type="hidden" value="0" name="AuroraExt">
</div>