-
Notifications
You must be signed in to change notification settings - Fork 1
Expand file tree
/
Copy pathindex.html
More file actions
1771 lines (1769 loc) · 115 KB
/
index.html
File metadata and controls
1771 lines (1769 loc) · 115 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 lang="en" class="h-100" data-bs-theme="auto">
<head>
<title>BiTGApps | Google Apps Package</title>
<meta charset="utf-8">
<meta name="generator" content="BiTGApps">
<meta name="author" content="The BiTGApps Project">
<meta name="description" content="BiTGApps is a customized Google Apps Package to sideload Google Apps in Custom Android OS. Supports Android 16.0 to 7.1.x with regular updates and bugs fixed.">
<meta name="keywords" content="android, google, apps, google apps, google apps android, google apps package, gapps, gapps download, gapps package, gapps package android, gapps android, 16, 15, 14, 13, 12, 11, 10, 9, 8, 7, opengapps, mindthegapps, bit gapps, bitgapps, bitgapp, bitget, bitsgap, nikgapps, flamegapps, litegapps, arm, arm64, core, mini, omni, roar, nano, atom, pico, full, tint, ksu, kernelsu, kernel, android experience, magisk, magisk gapps, gapps systemless, microg, microg installer, microg installer revived, microg installer magisk, microgplus, microg plus, ale5000 microg, minmicrog, minimal microg">
<meta name="viewport" content="width=device-width, initial-scale=1, shrink-to-fit=no">
<meta name="google-site-verification" content="VYHdRooX3mYKrN2oQkKnraZoHra8qihcnYaug2-R1J4">
<meta property="og:title" content="BiTGApps">
<meta property="og:description" content="BiTGApps is a customized Google Apps Package to sideload Google Apps in Custom Android OS. Supports Android 16.0 to 7.1.x with regular updates and bugs fixed.">
<meta property="og:locale" content="en_US">
<meta property="og:url" content="https://bitgapps.io">
<meta property="og:site_name" content="BiTGApps">
<meta property="og:type" content="website">
<meta itemprop="name" content="BiTGApps">
<meta itemprop="description" content="BiTGApps is a customized Google Apps Package to sideload Google Apps in Custom Android OS. Supports Android 16.0 to 7.1.x with regular updates and bugs fixed.">
<meta itemprop="image" content="https://bitgapps.io/images/1cecUb3.png">
<script type="application/ld+json">
{
"@context":"https://schema.org",
"@type":"WebSite",
"description":"BiTGApps is a customized Google Apps Package to sideload Google Apps in Custom Android OS. Supports Android 16.0 to 7.1.x with regular updates and bugs fixed.",
"headline":"BiTGApps",
"name":"BiTGApps",
"publisher": {
"@type":"Organization",
"logo": {
"@type":"ImageObject",
"url":"https://bitgapps.io/images/1cecUb3.png"
}
},
"url":"https://bitgapps.io"
}
</script>
<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="https://cdnjs.cloudflare.com/ajax/libs/simple-line-icons/2.5.5/css/simple-line-icons.min.css">
<link rel="stylesheet" href="https://cdn.jsdelivr.net/npm/select2@4.1.0-rc.0/dist/css/select2.min.css">
<link rel="stylesheet" href="assets/css/index.css?ver=22.0">
<link rel="canonical" href="https://bitgapps.io">
<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 src="https://cdn.jsdelivr.net/npm/select2@4.1.0-rc.0/dist/js/select2.min.js"></script>
<script async src="https://pagead2.googlesyndication.com/pagead/js/adsbygoogle.js?client=ca-pub-6267983170319694" crossorigin="anonymous"></script>
<script async src="https://www.googletagmanager.com/gtag/js?id=G-76BW4XC058"></script>
<script>
window.dataLayer = window.dataLayer || [];
function gtag(){dataLayer.push(arguments);}
gtag('js', new Date());
gtag('config', 'G-76BW4XC058');
</script>
<script src="assets/js/index.js?ver=22.0"></script>
<script src="assets/js/fetch.js?ver=28.0"></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="#">BiTGApps</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/about.html">About</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">BiTGApps</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="Google Apps Package" width="50" src="images/sidebar.png">
<div class="lh-1">
<p class="fs-6 mb-0 text-dark lh-1">BiTGApps</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="Google Apps Android" 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="GApps Package" 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="GApps Android" 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="GApps Download" width="32" height="32" class="rounded-circle me-2">Viraj Mathur</a></li>
</ul>
</div>
</div>
</div>
</div>
<main>
<!---SECTION--->
<div class="px-4 py-4 text-center" style="background:#D3F8E2">
<div class="col-lg-8 mx-auto mb-3">
<div class="d-flex justify-content-center">
<img class="w-50" src="images/1cecUb3.png" alt="Google Apps Package">
</div>
</div>
<h1 class="visually-hidden">Install Google Apps with Ease</h1>
<div class="mx-auto">
<p id="about" class="about intro mb-2">BiTGApps is a customized Google Apps Package to sideload Google Apps in Custom Android OS.<br>
Supports Android 16.0 to 7.1.x with regular updates and bugs fixed.</p>
<div class="col-md-6 mx-auto">
<div class="d-grid gap-2 d-sm-flex justify-content-sm-center">
<button type="button" id="liveAlertBtn" onclick="topFunction()" class="btn btn-primary btn-sm px-4 gap-3 border-2"><i class="fa-solid fa-download me-1"></i>Downloads</button>
<a role="button" class="btn btn-outline-success btn-sm px-4 border-2" href="https://t.me/BiTGAppsChat"><i class="bi bi-telegram me-1"></i>Telegram</a>
</div>
</div>
</div>
</div>
<!---SECTION--->
<div class="px-4 my-3 py-4 text-center" style="background:#f0f0f0">
<div class="container">
<p class="fs-2 mb-0 rubik text-black-50">Why BiTGApps?</p>
<div class="row row-cols-1 row-cols-md-2">
<div class="col mb-1">
<div class="card border-0 rounded text-center" style="background-color:#f0f0f0">
<div class="card-body">
<span style="font-size:25px"><i style="color:#4797B1" class="fa-sharp fa-solid fa-robot"></i></span>
<p class="card-title fs-5"><span class="badge text-bg-secondary rounded-pill">Android Support</span></p>
<p class="card-text fw-light">All Platforms and All Android Versions are Supported.</p>
</div>
</div>
</div>
<div class="col mb-1">
<div class="card border-0 rounded text-center" style="background-color:#f0f0f0">
<div class="card-body">
<span style="font-size:25px"><i style="color:#B958A5" class="fa-solid fa-cubes"></i></span>
<p class="card-title fs-5"><span class="badge text-bg-secondary rounded-pill">Customizable Installation</span></p>
<p class="card-text fw-light">BiTGApps can be installed from multiple environments with ease.</p>
</div>
</div>
</div>
<div class="col mb-1">
<div class="card border-0 rounded text-center" style="background-color:#f0f0f0">
<div class="card-body">
<span style="font-size:25px"><i style="color:#019267" class="fa-brands fa-android"></i></span>
<p class="card-title fs-5"><span class="badge text-bg-secondary rounded-pill">Wide Support</span></p>
<p class="card-text fw-light">BiTGApps offers flashable packages in many variations from Minimal to Variants.</p>
</div>
</div>
</div>
<div class="col mb-1">
<div class="card border-0 rounded text-center" style="background-color:#f0f0f0">
<div class="card-body">
<span style="font-size:25px"><i style="color:#DC3535" class="fa-solid fa-arrows-rotate"></i></span>
<p class="card-title fs-5"><span class="badge text-bg-secondary rounded-pill">Seamless OTA Updates</span></p>
<p class="card-text fw-light">BiTGApps comes with OTA survival support to provide you flash and forget experience.</p>
</div>
</div>
</div>
<div class="col mb-1">
<div class="card border-0 rounded text-center" style="background-color:#f0f0f0">
<div class="card-body">
<span style="font-size:25px"><i style="color:#C780FA" class="fa-solid fa-puzzle-piece"></i></span>
<p class="card-title fs-5"><span class="badge text-bg-secondary rounded-pill">Addons Support</span></p>
<p class="card-text fw-light">We have wide range of freeware Addons that you can use along side BiTGApps.</p>
</div>
</div>
</div>
<div class="col mb-1">
<div class="card border-0 rounded text-center" style="background-color:#f0f0f0">
<div class="card-body">
<span style="font-size:25px"><i style="color:#F46060" class="fa-solid fa-code"></i></span>
<p class="card-title fs-5"><span class="badge text-bg-secondary rounded-pill">Module Installation</span></p>
<p class="card-text fw-light">BiTGApps can also be installed as Magisk or KernelSU module beside recovery installation.</p>
</div>
</div>
</div>
<div class="col mb-1">
<div class="card border-0 rounded text-center" style="background-color:#f0f0f0">
<div class="card-body">
<span style="font-size:25px"><i style="color:#4797B1" class="fa-solid fa-wand-magic-sparkles"></i></span>
<p class="card-title fs-5"><span class="badge text-bg-secondary rounded-pill">Smart Space</span></p>
<p class="card-text fw-light">This feature allows you to re-flash BiTGApps even with insufficient space in system.</p>
</div>
</div>
</div>
<div class="col mb-1">
<div class="card border-0 rounded text-center" style="background-color:#f0f0f0">
<div class="card-body">
<span style="font-size:25px"><i style="color:#B958A5" class="fa-solid fa-face-smile"></i></span>
<p class="card-title fs-5"><span class="badge text-bg-secondary rounded-pill">Happy Community</span></p>
<p class="card-text fw-light">BiTGApps has a friendly community that helps you get what you're looking for in BiTGApps.</p>
</div>
</div>
</div>
</div>
</div>
</div>
<!---SECTION--->
<div class="px-0 my-3 py-1">
<ul class="list-group border-0 rounded-0 text-center">
<li class="list-group-item" type="button" data-bs-toggle="collapse" data-bs-target="#android" style="background-color:#f0f0f0">All Platforms and All Android Versions are Supported</li>
<div id="android" class="container-fluid border collapse show bg-white" style="border-color:#f0f0f0">
<img alt="Google Apps Android" class="img-fluid" style="width:500px" src="images/support.png">
</div>
<li class="list-group-item" type="button" data-bs-toggle="collapse" data-bs-target="#flashable" style="background-color:#f0f0f0">BiTGApps has flashable packages in four variations</li>
<div id="flashable" class="container-fluid collapse show bg-dark text-white text-center fw-light">
<p class="mb-0">
Minimal BiTGApps Package which includes the Core Google Apps like Google Play Services (GMS),
Google Services Framework (GSF), Google Play Store and other essentials. Variants like Mini, Omni and Roar
which includes everything from Minimal with more useful Google Apps like Contacts, Dialer, Gboard, etc.
Variants have different set of Google Apps. Checkout list of Google Apps in Minimal and Variants below.
</p>
</div>
<li class="list-group-item" style="background-color:#f0f0f0">BiTGApps comes with wide range of freeware Addons</li>
<li class="list-group-item" type="button" data-bs-toggle="collapse" data-bs-target="#ota" style="background-color:#f0f0f0">BiTGApps offers Seamless OTA Updates through Survival Script</li>
<div id="ota" class="container-fluid collapse show bg-dark text-white text-center fw-light">
<p class="mb-0">
OTA survival script allows you to update your current ROM to its latest version without worrying about
having to flash Google Apps again. This functionality gives you flash and forget experience. Currently
BiTGApps using ADDOND Version 3 which is latest.
</p>
</div>
<li class="list-group-item" style="background-color:#f0f0f0">BiTGApps comes with Dialer and Maps Framework Support</li>
<li class="list-group-item" style="background-color:#f0f0f0">BiTGApps replace AOSP Apps with Google Apps</li>
<li class="list-group-item" type="button" data-bs-toggle="collapse" data-bs-target="#size" style="background-color:#f0f0f0">Minimal BiTGApps Package size is less than 80MB</li>
<div id="size" class="container-fluid collapse show bg-dark text-white text-center fw-light"><p class="mb-0">Installation Size is different from Package Size.</p></div>
<li class="list-group-item" style="background-color:#f0f0f0">Relatively small size for easy Download and Installation</li>
<li class="list-group-item" style="background-color:#f0f0f0">Enabled Doze Mode for Google Play Services</li>
</ul>
</div>
<!---SECTION--->
<div class="px-0 my-3 py-0" style="background:#f0f0f0">
<div class="card border-0 rounded-0" style="background-color:#f0f0f0">
<div class="card-body">
<p class="card-text text-center" style="color:#1572A1"><small class="fw-bold">Installing for the first time ?</small></p>
<p class="card-text text-center fw-light mx-1">
Google Apps should be installed via recovery immediately after installing Custom ROM.
If you reboot into system before installing Google Apps, you must factory reset and
then install them, otherwise expect crashes. Addons, if you want to use, should be
installed in same manner on top of BiTGApps. SetupWizard need to be configured before
installation. Checkout instructions for SetupWizard below.
Please read the <a class="text-decoration-none" href="https://bitgapps.io/faq.html">FAQ</a> before installation.
</p>
<p class="card-text fw-light text-center">
<span class="badge rounded-pill" style="background:#1F8A70"><i class="fa-solid fa-lightbulb me-1"></i>Helpful Tip</span>
<br>
You should reboot to recovery after flashing Custom ROM for fresh installation.
</p>
<p class="card-text fw-light text-center">
<span class="badge rounded-pill" style="background:#FF731D"><i class="fa-solid fa-lightbulb me-1"></i>Dirty Flash</span>
<br>
<small class="fw-bold" style="color:#1572A1">Installing for the second time and so on ?</small>
<br>
Re-flashing of same package or upgrading to latest release doesn't require factory reset.
</p>
</div>
</div>
</div>
<!---SECTION--->
<div class="px-0 my-3 py-0 text-center" style="background:#f0f0f0">
<div class="card border-0 rounded-0" style="background-color:#f0f0f0">
<div class="card-header text-center rounded-0" style="background-color:#C9FFBF">
SetupWizard<span>'</span>s main purpose is to assist Android users when they have to first set up their phones,
especially if they want to transfer old data, such as apps, pictures, and personalized features, from their previous
phone or right after a reset.
</div>
<div class="card-body">
<p class="text-center" style="color:#1572A1"><small class="fw-bold">Want to install SetupWizard with BiTGApps ?</small></p>
<p class="text-center fw-light">
In order to have SetupWizard with BiTGApps, config file must be placed in internal
or external storage before installation. Avoid placing config file in folder
that contain special characters like "@#$" and spaces in their
name. In case both options are not available then follow below workaround.
</p>
<ul class="list-group text-center">
<li class="list-group-item"><span><i class="fa-solid fa-link me-1"></i><a class="text-decoration-none" href="https://sourceforge.net/projects/bitgapps/files/BiTGApps/bitgapps.conf/download">Download Config</a></span></li>
</ul>
<p class="text-center fw-light mt-3 mb-0">
Download config from above link and save it somewhere. Unpack BiTGApps ZIP and paste the downloaded
config inside extracted folder. The file must goes in root of extracted folder else it won't work.
Previous step is important and after doing this, select everything at once and re-pack as ZIP file.
Keep in mind, You need to select files and not the folder itself.
With LineageOS Recovery and similar, Adding configuation file to internal storage will not work.
Because of encrypted data partition. So this method is useful for such issues too.
</p>
</div>
<div class="card-footer text-center text-muted rounded-0" style="background-color:#f0f0f0">
Please read the <a class="text-decoration-none" href="https://bitgapps.io/faq.html">FAQ</a> before installation.
</div>
</div>
</div>
<!---SECTION--->
<div class="px-0 my-3 py-0 pt-0" style="background: linear-gradient(90deg, rgba(255,229,236,1) 0%, rgba(227,242,253,1) 47%, rgba(216,243,220,1) 100%);">
<div class="latest border-bottom text-center">
<p class="rubik text-uppercase animate-text mb-0">Latest Release</p>
</div>
<div class="row g-0">
<!---COLUMN--->
<div class="col-md-4">
<div class="card border-0 rounded-0 h-100" style="background:#FFE5EC">
<div class="card-body">
<div class="media d-flex">
<div class="media-body text-left">
<p class="card-text fs-4 danger">Latest v5.9</p>
<span class="silkscreen">Stable Release</span>
</div>
<div class="align-self-center">
<i class="icon-rocket danger font-large-2 float-right"></i>
</div>
</div>
</div>
</div>
</div>
<!---COLUMN--->
<div class="col-md-4">
<div class="card border-0 rounded-0 h-100" style="background:#E3F2FD">
<div class="card-body">
<div class="media d-flex">
<div class="media-body text-left">
<p class="card-text fs-4 info">Last Updated</p>
<span class="silkscreen">February 14, 2026</span>
</div>
<div class="align-self-center">
<i class="icon-diamond info font-large-2 float-right"></i>
</div>
</div>
</div>
</div>
</div>
<!---COLUMN--->
<div class="col-md-4">
<div class="card border-0 rounded-0 h-100" style="background:#D8F3DC">
<div class="card-body">
<div class="media d-flex">
<div class="media-body text-left">
<p class="card-text fs-4 success">Android Support</p>
<span class="silkscreen">7.1.x - 16.0</span>
</div>
<div class="align-self-center">
<i class="icon-heart success font-large-2 float-right"></i>
</div>
</div>
</div>
</div>
</div>
</div>
</div>
<!---SECTION--->
<div class="px-0 my-3 py-3" style="background:#f0f0f0">
<div class="container-fluid">
<div class="row justify-content-center">
<div class="col-lg-8">
<div class="text-center mb-2">
<p class="fs-1 fw-bold mb-2">Changelog</p>
<p class="text-muted">Keep track of our latest updates and improvements</p>
</div>
<div class="card shadow-sm mb-2">
<div class="card-body">
<div class="d-flex align-items-center mb-3">
<span class="badge bg-primary version me-2">v5.9.0</span>
<small class="text-muted">February 14, 2026</small>
</div>
<p class="card-title fs-5 mb-1">Major Release: Android 16</p>
<div class="position-relative">
<div class="release mb-3">
<div class="timeline"></div>
<p class="fw-bold fs-6 text-primary mb-1">Updated</p>
<p>Latest changes from february Pixel OTA.</p>
<p>Fixed rootfs running out of free space on Baklava.</p>
<p>Updated pre-bundled busybox with latest patches.</p>
<p>Refactor busybox backend and added 64-bit support.</p>
<p>Fixed busybox not executable 32-bit ELF file.</p>
</div>
<div class="release mb-3">
<div class="timeline"></div>
<p class="fw-bold fs-6 text-success mb-1">Added</p>
<p>Initial release of Android 16 Google Apps Package.</p>
<p>Dropped uses sdk attribute from overlay manifest.</p>
<p>Added five more variants for Android 16 (Addition).</p>
<p>Show backup and restore progress during OTA update.</p>
<p>Added missing Privileged Permissions fixes bootloop.</p>
<p>Minor adaptation to installation stack for Baklava.</p>
<p>Removed GMS Doze fixes Superficial issues with UI.</p>
<p>Prevent override of media codecs on older Platform.</p>
<p>Added back module installation feature (Addition).</p>
</div>
<div class="release mb-3">
<p class="fw-bold fs-6 text-danger mb-1">Fixed</p>
<p>Fixed bootloop in ROMs due to split permission.</p>
<p>Fixed clock styles deletion due to common match.</p>
<p>Fixed connection issues with Android Auto (Hotfix).</p>
<p>Fixed broken sound on older Platform (Hotfix).</p>
</div>
</div>
</div>
</div>
<div class="text-center">
<p class="text-muted silkscreen mb-0">Thanks for choosing BiTGApps!</p>
</div>
</div>
</div>
</div>
</div>
<!---SECTION--->
<div class="px-3 my-3 py-3 text-center" style="background:#f0f0f0">
<div class="border-bottom border-warning mb-2">
<p class="rubik fs-5 mb-0" style="color:#f99450">Get Android 16 Latest Release</p>
</div>
<p class="mb-3">
These Android 16 builds shipped with APKs taken directly from latest Pixel OTA.
Whenever a new Google Pixel OTA is released, which is monthly, we will also release newer Android 16 builds with APKs taken from that Pixel OTA.
Regular updates cover the latest Google Apps with bugs fixed on time.
Please check <a class="text-decoration-none" href="https://forum.xda-developers.com/t/custom-gapps-bitgapps-for-android.4012165">XDA Fourm Thread</a> of BiTGApps to learn more about newer changes after refactor.
</p>
<div class="px-4 py-4 shadow rounded mb-3" style="background:#f4f4f4">
<select id="software" onchange="populatePlatforms()">
<option value="" hidden>Select Version</option>
<optgroup label="Section 1">
<option value="CORE">Core</option>
<option value="MINI">Mini</option>
<option value="OMNI">Omni</option>
<option value="ROAR">Roar</option>
<option value="NANO">Nano</option>
<option value="ATOM">Atom</option>
<option value="PICO">Pico</option>
<option value="FULL">Full</option>
<option value="TINT">Tint</option>
</optgroup>
<optgroup label="Section 2">
<option value="ADDON">Addon</option>
</optgroup>
</select>
<select id="platform" class="my-1" onchange="populateVersions()" disabled>
<option value="" hidden>Select Platform</option>
</select>
<select id="version" disabled>
<option value="" hidden>Select Android</option>
</select>
<hr>
<button type="button" class="btn btn-warning btn-sm" onclick="handleDownload()"><i class="bi bi-cloud-download me-1"></i>Download Selected File</button>
</div>
<p class="text-success fw-bold mb-1">Want more personalized build? Custom Builds for Android 16 available now.</p>
<p class="mb-2">
You can now build Google Apps Package with YOUR choice of Google Apps with fewer selection.
This feature is available ONLY for Android 16 because of limited resources.
Custom builds always contain Google Apps from latest Google Pixel OTA.
You will have unlimited custom builds for Android 16. These custom builds 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.
</p>
<hr>
<p class="text-danger fw-bold mb-1">How custom build works and respone from server.</p>
<p class="mb-2">
If you haven't made a build request then what you're seeing is someone else requested build on status page. When you made a request with your selected options, the index on status page will be updated with your download link and text file will be updated reflecting your chosen options. Further build requests will be rejected unless previous one is completed. CronJob runs after every two minutes. You will get your build done in less than a minutes.
Please keep refreshing the status page until it is updated with newer links. You can also check text file whether it is updated with your selected apps
or not. Below are the sever responses, depending on how you interact with the build system.
</p>
<div class="mb-3">
<ul class="list-group">
<li class="list-group-item sand-sans" type="button" data-bs-toggle="collapse" data-bs-target="#onhold" style="background-color:#f4f4f4">Your build is in Queue!</li>
<div id="onhold" class="collapse show bg-success bg-opacity-50 text-white text-center fw-light">
<p class="mb-0">This means build system hasn't picked up your build request.</p>
</div>
<li class="list-group-item sand-sans" type="button" data-bs-toggle="collapse" data-bs-target="#tasker" style="background-color:#f4f4f4">Your build is in tasker!</li>
<div id="tasker" class="collapse show bg-success bg-opacity-50 text-white text-center fw-light">
<p class="mb-0">This means CronJob has finally take over the build request and your build will be available in few seconds.</p>
</div>
<li class="list-group-item sand-sans" type="button" data-bs-toggle="collapse" data-bs-target="#username" style="background-color:#f4f4f4">Username not Found!</li>
<div id="username" class="collapse show bg-success bg-opacity-50 text-white text-center fw-light">
<p class="mb-0">This means you have selected a username from list which is not assigned.</p>
</div>
<li class="list-group-item sand-sans" type="button" data-bs-toggle="collapse" data-bs-target="#fields" style="background-color:#f4f4f4">Some fields are not set!</li>
<div id="fields" class="collapse show bg-success bg-opacity-50 text-white text-center fw-light">
<p class="mb-0">This means you left some options unchecked.</p>
</div>
<li class="list-group-item sand-sans" type="button" data-bs-toggle="collapse" data-bs-target="#limit" style="background-color:#f4f4f4">Current User Limit Reached!</li>
<div id="limit" class="collapse show bg-success bg-opacity-50 text-white text-center fw-light">
<p class="mb-0">This means the build system will not process any new requests until restarted.</p>
</div>
<li class="list-group-item sand-sans" style="background-color:#f4f4f4">Use pre-defined options from below to make a build request.</li>
</ul>
</div>
<div class="col-md-4 mx-auto mb-3">
<ul class="list-group">
<li class="list-group-item list-group-item-light"><i class="bi bi-1-square me-1"></i>Select username <strong>"tres2b"</strong></li>
<li class="list-group-item list-group-item-light"><i class="bi bi-2-square me-1"></i>Select Device Platform <strong>"ARM64"</strong></li>
<li class="list-group-item list-group-item-light"><i class="bi bi-3-square me-1"></i>Select Android Version <strong>"16.0.0"</strong></li>
<li class="list-group-item list-group-item-light"><i class="bi bi-4-square me-1"></i>Select API Version <strong>"36"</strong></li>
<li class="list-group-item list-group-item-light"><i class="bi bi-5-square me-1"></i>Always set Build Count to <strong>"1"</strong></li>
<li class="list-group-item list-group-item-light"><i class="bi bi-6-square me-1"></i>Click submit for build request</li>
</ul>
</div>
<div class="col-md-6 mx-auto mb-2">
<div class="d-grid gap-2 d-sm-flex justify-content-sm-center">
<a role="button" class="btn btn-dark btn-sm px-4 gap-3 border-2 active" href="https://build.bitgapps.io/tres2b/client.html"><i class="fa-solid fa-arrow-up-right-from-square fa-fade me-2"></i>Self Build Link</a>
<a role="button" class="btn btn-outline-success btn-sm px-4 border-2" href="https://build.bitgapps.io/tres2b/">Build Status</a>
</div>
</div>
</div>
<!---SECTION--->
<div class="px-1 py-1 text-center" style="background:#ffebd8">
<div class="latest border-bottom border-danger-subtle">
<p class="rubik text-uppercase animate-text mb-0">Downloads Section</p>
</div>
<div class="container-fluid">
<div class="card-deck">
<div class="card border-0 rounded-0 text-center mb-n3" style="background-color:#ffebd8">
<div class="card-body">
<p class="card-title fs-4"><span class="badge rounded-pill text-bg-danger">CORE</span></p>
<p class="card-subtitle mb-2 text-muted">Google Apps Package</p>
<p class="card-text noto-sans small">Minimal. Battery friendly. Device boots faster.</p>
<a role="button" class="btn btn-dark btn-sm" data-bs-toggle="collapse" data-bs-target="#collPanelCore" href="#collPanelCore"><i class="fa-solid fa-arrow-up-right-from-square fa-fade me-2"></i>Click Here</a>
</div>
</div>
</div>
<div class="collapse" id="collPanelCore">
<div class="card-deck border-0 rounded-0 mb-n3 mt-0">
<div class="card card-body border-0 rounded-0 text-center" style="background-color:#ffebd8">
<table class="table table-light table-striped table-bordered table-hover">
<thead class="table-dark">
<tr>
<th>Android</th>
<th>Downloads</th>
</tr>
</thead>
<tbody>
<tr class="table-info">
<td>16.0</td>
<td>
<div class="dropdown">
<button type="button" class="btn btn-dark dropdown-toggle" data-bs-toggle="dropdown" aria-expanded="false">Link</button>
<div class="dropdown-menu">
<a class="dropdown-item" href="https://github.com/BiTGApps/release/releases/download/v5.7-release/BiTGApps-arm-16.0.0-v5.7-CORE.zip">ARM</a>
<a class="dropdown-item" href="https://github.com/BiTGApps/release/releases/download/v5.7-release/BiTGApps-arm64-16.0.0-v5.7-CORE.zip">ARM64</a>
</div>
</div>
</td>
</tr>
<tr class="table-info">
<td>15.0</td>
<td>
<div class="dropdown">
<button type="button" class="btn btn-dark dropdown-toggle" data-bs-toggle="dropdown" aria-expanded="false">Link</button>
<div class="dropdown-menu">
<a class="dropdown-item" href="https://github.com/BiTGApps/release/releases/download/v5.7-release/BiTGApps-arm-15.0.0-v5.7-CORE.zip">ARM</a>
<a class="dropdown-item" href="https://github.com/BiTGApps/release/releases/download/v5.7-release/BiTGApps-arm64-15.0.0-v5.7-CORE.zip">ARM64</a>
</div>
</div>
</td>
</tr>
<tr class="table-info">
<td>14.0</td>
<td>
<div class="dropdown">
<button type="button" class="btn btn-dark dropdown-toggle" data-bs-toggle="dropdown" aria-expanded="false">Link</button>
<div class="dropdown-menu">
<a class="dropdown-item" href="https://github.com/BiTGApps/release/releases/download/v5.7-release/BiTGApps-arm-14.0.0-v5.7-CORE.zip">ARM</a>
<a class="dropdown-item" href="https://github.com/BiTGApps/release/releases/download/v5.7-release/BiTGApps-arm64-14.0.0-v5.7-CORE.zip">ARM64</a>
</div>
</div>
</td>
</tr>
<tr class="table-info">
<td>13.0</td>
<td>
<div class="dropdown">
<button type="button" class="btn btn-dark dropdown-toggle" data-bs-toggle="dropdown" aria-expanded="false">Link</button>
<div class="dropdown-menu">
<a class="dropdown-item" href="https://github.com/BiTGApps/release/releases/download/v5.7-release/BiTGApps-arm-13.0.0-v5.7-CORE.zip">ARM</a>
<a class="dropdown-item" href="https://github.com/BiTGApps/release/releases/download/v5.7-release/BiTGApps-arm64-13.0.0-v5.7-CORE.zip">ARM64</a>
</div>
</div>
</td>
</tr>
<tr class="table-info">
<td>12.1</td>
<td>
<div class="dropdown">
<button type="button" class="btn btn-dark dropdown-toggle" data-bs-toggle="dropdown" aria-expanded="false">Link</button>
<div class="dropdown-menu" role="menu">
<a class="dropdown-item" href="https://github.com/BiTGApps/release/releases/download/v5.7-release/BiTGApps-arm-12.1.0-v5.7-CORE.zip">ARM</a>
<a class="dropdown-item" href="https://github.com/BiTGApps/release/releases/download/v5.7-release/BiTGApps-arm64-12.1.0-v5.7-CORE.zip">ARM64</a>
</div>
</div>
</td>
</tr>
<tr class="table-info">
<td>12.0</td>
<td>
<div class="dropdown">
<button type="button" class="btn btn-dark dropdown-toggle" data-bs-toggle="dropdown" aria-expanded="false">Link</button>
<div class="dropdown-menu" role="menu">
<a class="dropdown-item" href="https://github.com/BiTGApps/release/releases/download/v5.7-release/BiTGApps-arm-12.0.0-v5.7-CORE.zip">ARM</a>
<a class="dropdown-item" href="https://github.com/BiTGApps/release/releases/download/v5.7-release/BiTGApps-arm64-12.0.0-v5.7-CORE.zip">ARM64</a>
</div>
</div>
</td>
</tr>
<tr class="table-info">
<td>11.0</td>
<td>
<div class="dropdown">
<button type="button" class="btn btn-dark dropdown-toggle" data-bs-toggle="dropdown" aria-expanded="false">Link</button>
<div class="dropdown-menu" role="menu">
<a class="dropdown-item" href="https://github.com/BiTGApps/release/releases/download/v5.7-release/BiTGApps-arm-11.0.0-v5.7-CORE.zip">ARM</a>
<a class="dropdown-item" href="https://github.com/BiTGApps/release/releases/download/v5.7-release/BiTGApps-arm64-11.0.0-v5.7-CORE.zip">ARM64</a>
</div>
</div>
</td>
</tr>
<tr class="table-info">
<td>10.0</td>
<td>
<div class="dropdown">
<button type="button" class="btn btn-dark dropdown-toggle" data-bs-toggle="dropdown" aria-expanded="false">Link</button>
<div class="dropdown-menu" role="menu">
<a class="dropdown-item" href="https://github.com/BiTGApps/release/releases/download/v5.7-release/BiTGApps-arm-10.0.0-v5.7-CORE.zip">ARM</a>
<a class="dropdown-item" href="https://github.com/BiTGApps/release/releases/download/v5.7-release/BiTGApps-arm64-10.0.0-v5.7-CORE.zip">ARM64</a>
</div>
</div>
</td>
</tr>
<tr class="table-info">
<td>9.0</td>
<td>
<div class="dropdown">
<button type="button" class="btn btn-dark dropdown-toggle" data-bs-toggle="dropdown" aria-expanded="false">Link</button>
<div class="dropdown-menu" role="menu">
<a class="dropdown-item" href="https://github.com/BiTGApps/release/releases/download/v5.7-release/BiTGApps-arm-9.0.0-v5.7-CORE.zip">ARM</a>
<a class="dropdown-item" href="https://github.com/BiTGApps/release/releases/download/v5.7-release/BiTGApps-arm64-9.0.0-v5.7-CORE.zip">ARM64</a>
</div>
</div>
</td>
</tr>
<tr class="table-info">
<td>8.1.0</td>
<td>
<div class="dropdown">
<button type="button" class="btn btn-dark dropdown-toggle" data-bs-toggle="dropdown" aria-expanded="false">Link</button>
<div class="dropdown-menu" role="menu">
<a class="dropdown-item" href="https://github.com/BiTGApps/release/releases/download/v5.7-release/BiTGApps-arm-8.1.0-v5.7-CORE.zip">ARM</a>
<a class="dropdown-item" href="https://github.com/BiTGApps/release/releases/download/v5.7-release/BiTGApps-arm64-8.1.0-v5.7-CORE.zip">ARM64</a>
</div>
</div>
</td>
</tr>
<tr class="table-info">
<td>8.0.0</td>
<td>
<div class="dropdown">
<button type="button" class="btn btn-dark dropdown-toggle" data-bs-toggle="dropdown" aria-expanded="false">Link</button>
<div class="dropdown-menu" role="menu">
<a class="dropdown-item" href="https://github.com/BiTGApps/release/releases/download/v5.7-release/BiTGApps-arm-8.0.0-v5.7-CORE.zip">ARM</a>
<a class="dropdown-item" href="https://github.com/BiTGApps/release/releases/download/v5.7-release/BiTGApps-arm64-8.0.0-v5.7-CORE.zip">ARM64</a>
</div>
</div>
</td>
</tr>
<tr class="table-info">
<td>7.1.2</td>
<td>
<div class="dropdown">
<button type="button" class="btn btn-dark dropdown-toggle" data-bs-toggle="dropdown" aria-expanded="false">Link</button>
<div class="dropdown-menu" role="menu">
<a class="dropdown-item" href="https://github.com/BiTGApps/release/releases/download/v5.7-release/BiTGApps-arm-7.1.2-v5.7-CORE.zip">ARM</a>
<a class="dropdown-item" href="https://github.com/BiTGApps/release/releases/download/v5.7-release/BiTGApps-arm64-7.1.2-v5.7-CORE.zip">ARM64</a>
</div>
</div>
</td>
</tr>
<tr class="table-info">
<td>7.1.1</td>
<td>
<div class="dropdown">
<button type="button" class="btn btn-dark dropdown-toggle" data-bs-toggle="dropdown" aria-expanded="false">Link</button>
<div class="dropdown-menu" role="menu">
<a class="dropdown-item" href="https://github.com/BiTGApps/release/releases/download/v5.7-release/BiTGApps-arm-7.1.1-v5.7-CORE.zip">ARM</a>
<a class="dropdown-item" href="https://github.com/BiTGApps/release/releases/download/v5.7-release/BiTGApps-arm64-7.1.1-v5.7-CORE.zip">ARM64</a>
</div>
</div>
</td>
</tr>
</tbody>
</table>
</div>
</div>
</div>
</div>
</div>
<div class="px-1 py-1 text-center" style="background:#d4e7c5">
<div class="container-fluid">
<div class="card-deck">
<div class="card border-0 rounded-0 text-center mb-n3" style="background-color:#d4e7c5">
<div class="card-body">
<p class="card-title fs-4"><span class="badge rounded-pill text-bg-success">Mini</span></p>
<p class="card-subtitle mb-2 text-muted">Google Apps Package</p>
<p class="card-text noto-sans small">Powered with Google Assistant and AndroidAuto.</p>
<a role="button" class="btn btn-dark btn-sm" data-bs-toggle="collapse" data-bs-target="#collPanelMini" href="#collPanelMini"><i class="fa-solid fa-arrow-up-right-from-square fa-fade me-2"></i>Click Here</a>
</div>
</div>
</div>
<div class="collapse" id="collPanelMini">
<div class="card-deck border-0 rounded-0 mb-n3 mt-0">
<div class="card card-body border-0 rounded-0 text-center" style="background-color:#d4e7c5">
<table class="table table-light table-striped table-bordered table-hover">
<thead class="table-dark">
<tr>
<th>Android</th>
<th>Downloads</th>
</tr>
</thead>
<tbody>
<tr class="table-info">
<td>16.0</td>
<td>
<div class="dropdown">
<button type="button" class="btn btn-dark dropdown-toggle" data-bs-toggle="dropdown" aria-expanded="false">Link</button>
<div class="dropdown-menu">
<a class="dropdown-item" href="https://github.com/BiTGApps/release/releases/download/v5.7-release/BiTGApps-arm-16.0.0-v5.7-MINI.zip">ARM</a>
<a class="dropdown-item" href="https://github.com/BiTGApps/release/releases/download/v5.7-release/BiTGApps-arm64-16.0.0-v5.7-MINI.zip">ARM64</a>
</div>
</div>
</td>
</tr>
<tr class="table-info">
<td>15.0</td>
<td>
<div class="dropdown">
<button type="button" class="btn btn-dark dropdown-toggle" data-bs-toggle="dropdown" aria-expanded="false">Link</button>
<div class="dropdown-menu">
<a class="dropdown-item" href="https://github.com/BiTGApps/release/releases/download/v5.7-release/BiTGApps-arm-15.0.0-v5.7-MINI.zip">ARM</a>
<a class="dropdown-item" href="https://github.com/BiTGApps/release/releases/download/v5.7-release/BiTGApps-arm64-15.0.0-v5.7-MINI.zip">ARM64</a>
</div>
</div>
</td>
</tr>
<tr class="table-info">
<td>14.0</td>
<td>
<div class="dropdown">
<button type="button" class="btn btn-dark dropdown-toggle" data-bs-toggle="dropdown" aria-expanded="false">Link</button>
<div class="dropdown-menu">
<a class="dropdown-item" href="https://github.com/BiTGApps/release/releases/download/v5.7-release/BiTGApps-arm-14.0.0-v5.7-MINI.zip">ARM</a>
<a class="dropdown-item" href="https://github.com/BiTGApps/release/releases/download/v5.7-release/BiTGApps-arm64-14.0.0-v5.7-MINI.zip">ARM64</a>
</div>
</div>
</td>
</tr>
<tr class="table-info">
<td>13.0</td>
<td>
<div class="dropdown">
<button type="button" class="btn btn-dark dropdown-toggle" data-bs-toggle="dropdown" aria-expanded="false">Link</button>
<div class="dropdown-menu">
<a class="dropdown-item" href="https://github.com/BiTGApps/release/releases/download/v5.7-release/BiTGApps-arm-13.0.0-v5.7-MINI.zip">ARM</a>
<a class="dropdown-item" href="https://github.com/BiTGApps/release/releases/download/v5.7-release/BiTGApps-arm64-13.0.0-v5.7-MINI.zip">ARM64</a>
</div>
</div>
</td>
</tr>
<tr class="table-info">
<td>12.1</td>
<td>
<div class="dropdown">
<button type="button" class="btn btn-dark dropdown-toggle" data-bs-toggle="dropdown" aria-expanded="false">Link</button>
<div class="dropdown-menu" role="menu">
<a class="dropdown-item" href="https://github.com/BiTGApps/release/releases/download/v5.7-release/BiTGApps-arm-12.1.0-v5.7-MINI.zip">ARM</a>
<a class="dropdown-item" href="https://github.com/BiTGApps/release/releases/download/v5.7-release/BiTGApps-arm64-12.1.0-v5.7-MINI.zip">ARM64</a>
</div>
</div>
</td>
</tr>
<tr class="table-info">
<td>12.0</td>
<td>
<div class="dropdown">
<button type="button" class="btn btn-dark dropdown-toggle" data-bs-toggle="dropdown" aria-expanded="false">Link</button>
<div class="dropdown-menu" role="menu">
<a class="dropdown-item" href="https://github.com/BiTGApps/release/releases/download/v5.7-release/BiTGApps-arm-12.0.0-v5.7-MINI.zip">ARM</a>
<a class="dropdown-item" href="https://github.com/BiTGApps/release/releases/download/v5.7-release/BiTGApps-arm64-12.0.0-v5.7-MINI.zip">ARM64</a>
</div>
</div>
</td>
</tr>
<tr class="table-info">
<td>11.0</td>
<td>
<div class="dropdown">
<button type="button" class="btn btn-dark dropdown-toggle" data-bs-toggle="dropdown" aria-expanded="false">Link</button>
<div class="dropdown-menu" role="menu">
<a class="dropdown-item" href="https://github.com/BiTGApps/release/releases/download/v5.7-release/BiTGApps-arm-11.0.0-v5.7-MINI.zip">ARM</a>
<a class="dropdown-item" href="https://github.com/BiTGApps/release/releases/download/v5.7-release/BiTGApps-arm64-11.0.0-v5.7-MINI.zip">ARM64</a>
</div>
</div>
</td>
</tr>
<tr class="table-info">
<td>10.0</td>
<td>
<div class="dropdown">
<button type="button" class="btn btn-dark dropdown-toggle" data-bs-toggle="dropdown" aria-expanded="false">Link</button>
<div class="dropdown-menu" role="menu">
<a class="dropdown-item" href="https://github.com/BiTGApps/release/releases/download/v5.7-release/BiTGApps-arm-10.0.0-v5.7-MINI.zip">ARM</a>
<a class="dropdown-item" href="https://github.com/BiTGApps/release/releases/download/v5.7-release/BiTGApps-arm64-10.0.0-v5.7-MINI.zip">ARM64</a>
</div>
</div>
</td>
</tr>
<tr class="table-info">
<td>9.0</td>
<td>
<div class="dropdown">
<button type="button" class="btn btn-dark dropdown-toggle" data-bs-toggle="dropdown" aria-expanded="false">Link</button>
<div class="dropdown-menu" role="menu">
<a class="dropdown-item" href="https://github.com/BiTGApps/release/releases/download/v5.7-release/BiTGApps-arm-9.0.0-v5.7-MINI.zip">ARM</a>
<a class="dropdown-item" href="https://github.com/BiTGApps/release/releases/download/v5.7-release/BiTGApps-arm64-9.0.0-v5.7-MINI.zip">ARM64</a>
</div>
</div>
</td>
</tr>
<tr class="table-info">
<td>8.1.0</td>
<td>
<div class="dropdown">
<button type="button" class="btn btn-dark dropdown-toggle" data-bs-toggle="dropdown" aria-expanded="false">Link</button>
<div class="dropdown-menu" role="menu">
<a class="dropdown-item" href="https://github.com/BiTGApps/release/releases/download/v5.7-release/BiTGApps-arm-8.1.0-v5.7-MINI.zip">ARM</a>
<a class="dropdown-item" href="https://github.com/BiTGApps/release/releases/download/v5.7-release/BiTGApps-arm64-8.1.0-v5.7-MINI.zip">ARM64</a>
</div>
</div>
</td>
</tr>
<tr class="table-info">
<td>8.0.0</td>
<td>
<div class="dropdown">
<button type="button" class="btn btn-dark dropdown-toggle" data-bs-toggle="dropdown" aria-expanded="false">Link</button>
<div class="dropdown-menu" role="menu">
<a class="dropdown-item" href="https://github.com/BiTGApps/release/releases/download/v5.7-release/BiTGApps-arm-8.0.0-v5.7-MINI.zip">ARM</a>
<a class="dropdown-item" href="https://github.com/BiTGApps/release/releases/download/v5.7-release/BiTGApps-arm64-8.0.0-v5.7-MINI.zip">ARM64</a>
</div>
</div>
</td>
</tr>
<tr class="table-info">
<td>7.1.2</td>
<td>
<div class="dropdown">
<button type="button" class="btn btn-dark dropdown-toggle" data-bs-toggle="dropdown" aria-expanded="false">Link</button>
<div class="dropdown-menu" role="menu">
<a class="dropdown-item" href="https://github.com/BiTGApps/release/releases/download/v5.7-release/BiTGApps-arm-7.1.2-v5.7-MINI.zip">ARM</a>
<a class="dropdown-item" href="https://github.com/BiTGApps/release/releases/download/v5.7-release/BiTGApps-arm64-7.1.2-v5.7-MINI.zip">ARM64</a>
</div>
</div>
</td>
</tr>
<tr class="table-info">
<td>7.1.1</td>
<td>
<div class="dropdown">
<button type="button" class="btn btn-dark dropdown-toggle" data-bs-toggle="dropdown" aria-expanded="false">Link</button>
<div class="dropdown-menu" role="menu">
<a class="dropdown-item" href="https://github.com/BiTGApps/release/releases/download/v5.7-release/BiTGApps-arm-7.1.1-v5.7-MINI.zip">ARM</a>
<a class="dropdown-item" href="https://github.com/BiTGApps/release/releases/download/v5.7-release/BiTGApps-arm64-7.1.1-v5.7-MINI.zip">ARM64</a>
</div>
</div>
</td>
</tr>
</tbody>
</table>
</div>
</div>
</div>
</div>
</div>
<div class="px-1 py-1 text-center" style="background:#cde7ed">
<div class="container-fluid">
<div class="card-deck">
<div class="card border-0 rounded-0 text-center mb-n3" style="background-color:#cde7ed">
<div class="card-body">
<p class="card-title fs-4"><span class="badge rounded-pill text-white" style="background-color:#4b9da9">OMNI</span></p>
<p class="card-subtitle mb-2 text-muted">Google Apps Package</p>
<p class="card-text noto-sans small">Common Replacement for AOSP Prebuilt.</p>
<a role="button" class="btn btn-dark btn-sm" data-bs-toggle="collapse" data-bs-target="#collPanelOmni" href="#collPanelOmni"><i class="fa-solid fa-arrow-up-right-from-square fa-fade me-2"></i>Click Here</a>
</div>
</div>
</div>
<div class="collapse" id="collPanelOmni">
<div class="card-deck border-0 rounded-0 mb-n3 mt-0">
<div class="card card-body border-0 rounded-0 text-center" style="background-color:#cde7ed">
<table class="table table-light table-striped table-bordered table-hover">
<thead class="table-dark">
<tr>
<th>Android</th>
<th>Downloads</th>
</tr>
</thead>
<tbody>
<tr class="table-info">
<td>16.0</td>
<td>
<div class="dropdown">
<button type="button" class="btn btn-dark dropdown-toggle" data-bs-toggle="dropdown" aria-expanded="false">Link</button>
<div class="dropdown-menu">
<a class="dropdown-item" href="https://github.com/BiTGApps/release/releases/download/v5.7-release/BiTGApps-arm-16.0.0-v5.7-OMNI.zip">ARM</a>
<a class="dropdown-item" href="https://github.com/BiTGApps/release/releases/download/v5.7-release/BiTGApps-arm64-16.0.0-v5.7-OMNI.zip">ARM64</a>
</div>
</div>
</td>
</tr>
<tr class="table-info">
<td>15.0</td>
<td>
<div class="dropdown">
<button type="button" class="btn btn-dark dropdown-toggle" data-bs-toggle="dropdown" aria-expanded="false">Link</button>
<div class="dropdown-menu">
<a class="dropdown-item" href="https://github.com/BiTGApps/release/releases/download/v5.7-release/BiTGApps-arm-15.0.0-v5.7-OMNI.zip">ARM</a>
<a class="dropdown-item" href="https://github.com/BiTGApps/release/releases/download/v5.7-release/BiTGApps-arm64-15.0.0-v5.7-OMNI.zip">ARM64</a>
</div>
</div>
</td>
</tr>
<tr class="table-info">
<td>14.0</td>
<td>
<div class="dropdown">
<button type="button" class="btn btn-dark dropdown-toggle" data-bs-toggle="dropdown" aria-expanded="false">Link</button>
<div class="dropdown-menu">
<a class="dropdown-item" href="https://github.com/BiTGApps/release/releases/download/v5.7-release/BiTGApps-arm-14.0.0-v5.7-OMNI.zip">ARM</a>
<a class="dropdown-item" href="https://github.com/BiTGApps/release/releases/download/v5.7-release/BiTGApps-arm64-14.0.0-v5.7-OMNI.zip">ARM64</a>
</div>
</div>
</td>
</tr>
<tr class="table-info">
<td>13.0</td>
<td>
<div class="dropdown">
<button type="button" class="btn btn-dark dropdown-toggle" data-bs-toggle="dropdown" aria-expanded="false">Link</button>
<div class="dropdown-menu">
<a class="dropdown-item" href="https://github.com/BiTGApps/release/releases/download/v5.7-release/BiTGApps-arm-13.0.0-v5.7-OMNI.zip">ARM</a>
<a class="dropdown-item" href="https://github.com/BiTGApps/release/releases/download/v5.7-release/BiTGApps-arm64-13.0.0-v5.7-OMNI.zip">ARM64</a>
</div>
</div>