-
Notifications
You must be signed in to change notification settings - Fork 8
/
Copy pathelite.yaml
2652 lines (2652 loc) · 214 KB
/
elite.yaml
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
Bartixxx32:
- content:
- question:
- content:
- ans: Download <a style="color:blue" target="_blank" href="https://sourceforge.net/projects/nikgapps/files/Elite-Releases/Bartixxx/NikGapps-T/19-Apr-2024/NikGapps-bartixxx-arm64-13-20240419-signed.zip/download">NikGapps-bartixxx-arm64-13-20240419-signed.zip
(329.96 MB)</a>
- ans: What's included?<br>- -> Core<br>- - ExtraFiles<br>- - GooglePlayStore<br>-
- GoogleServicesFramework<br>- - GoogleContactsSyncAdapter<br>- - GoogleCalendarSyncAdapter<br>-
- GmsCore<br>- -> DigitalWellbeing<br>- - DigitalWellbeing<br>- -> GoogleMessages<br>-
- GoogleMessages<br>- -> GoogleDialer<br>- - GoogleDialer<br>- -> GoogleContacts<br>-
- GoogleContacts<br>- -> CarrierServices<br>- - CarrierServices<br>- ->
GoogleClock<br>- - GoogleClock<br>- -> SetupWizard<br>- - SetupWizard<br>-
- GoogleRestore<br>- - GoogleOneTimeInitializer<br>- -> GoogleCalculator<br>-
- GoogleCalculator<br>- -> GoogleLocationHistory<br>- - GoogleLocationHistory<br>-
-> DeviceHealthServices<br>- - DeviceHealthServices<br>- -> GBoard<br>-
- GBoard<br>- -> GoogleCalendar<br>- - GoogleCalendar<br>- -> GoogleRecorder<br>-
- GoogleRecorder<br>- -> GoogleFiles<br>- - GoogleFiles<br>- - StorageManager<br>-
- DocumentsUIGoogle<br>- -> MarkupGoogle<br>- - MarkupGoogle<br>- -> GoogleTTS<br>-
- GoogleTTS<br>- -> GoogleSounds<br>- - GoogleSounds<br>- -> DeviceSetup<br>-
- DeviceSetup<br>- -> AndroidAuto<br>- - AndroidAuto<br>- -> GooglePartnerSetup<br>-
- GooglePartnerSetup<br>- -> AndroidDevicePolicy<br>- - AndroidDevicePolicy
title: 20240419 (bartixxx.config)
- question:
- content:
- ans: Download <a style="color:blue" target="_blank" href="https://sourceforge.net/projects/nikgapps/files/Elite-Releases/Bartixxx/NikGapps-T/07-Mar-2024/NikGapps-bartixxx-arm64-13-20240307-signed.zip/download">NikGapps-bartixxx-arm64-13-20240307-signed.zip
(329.94 MB)</a>
- ans: What's included?<br>- -> Core<br>- - ExtraFiles<br>- - GooglePlayStore<br>-
- GoogleServicesFramework<br>- - GoogleContactsSyncAdapter<br>- - GoogleCalendarSyncAdapter<br>-
- GmsCore<br>- -> DigitalWellbeing<br>- - DigitalWellbeing<br>- -> GoogleMessages<br>-
- GoogleMessages<br>- -> GoogleDialer<br>- - GoogleDialer<br>- -> GoogleContacts<br>-
- GoogleContacts<br>- -> CarrierServices<br>- - CarrierServices<br>- ->
GoogleClock<br>- - GoogleClock<br>- -> SetupWizard<br>- - SetupWizard<br>-
- GoogleRestore<br>- - GoogleOneTimeInitializer<br>- -> GoogleCalculator<br>-
- GoogleCalculator<br>- -> GoogleLocationHistory<br>- - GoogleLocationHistory<br>-
-> DeviceHealthServices<br>- - DeviceHealthServices<br>- -> GBoard<br>-
- GBoard<br>- -> GoogleCalendar<br>- - GoogleCalendar<br>- -> GoogleRecorder<br>-
- GoogleRecorder<br>- -> GoogleFiles<br>- - GoogleFiles<br>- - StorageManager<br>-
- DocumentsUIGoogle<br>- -> MarkupGoogle<br>- - MarkupGoogle<br>- -> GoogleTTS<br>-
- GoogleTTS<br>- -> GoogleSounds<br>- - GoogleSounds<br>- -> DeviceSetup<br>-
- DeviceSetup<br>- -> AndroidAuto<br>- - AndroidAuto<br>- -> GooglePartnerSetup<br>-
- GooglePartnerSetup<br>- -> AndroidDevicePolicy<br>- - AndroidDevicePolicy
title: 20240307 (bartixxx.config)
- question:
- content:
- ans: Download <a style="color:blue" target="_blank" href="https://sourceforge.net/projects/nikgapps/files/Elite-Releases/Bartixxx/NikGapps-T/12-Feb-2024/NikGapps-bartixxx-arm64-13-20240212-signed.zip/download">NikGapps-bartixxx-arm64-13-20240212-signed.zip
(329.22 MB)</a>
- ans: What's included?<br>- -> Core<br>- - ExtraFiles<br>- - GooglePlayStore<br>-
- GoogleServicesFramework<br>- - GoogleContactsSyncAdapter<br>- - GoogleCalendarSyncAdapter<br>-
- GmsCore<br>- -> DigitalWellbeing<br>- - DigitalWellbeing<br>- -> GoogleMessages<br>-
- GoogleMessages<br>- -> GoogleDialer<br>- - GoogleDialer<br>- -> GoogleContacts<br>-
- GoogleContacts<br>- -> CarrierServices<br>- - CarrierServices<br>- ->
GoogleClock<br>- - GoogleClock<br>- -> SetupWizard<br>- - SetupWizard<br>-
- GoogleRestore<br>- - GoogleOneTimeInitializer<br>- -> GoogleCalculator<br>-
- GoogleCalculator<br>- -> GoogleLocationHistory<br>- - GoogleLocationHistory<br>-
-> DeviceHealthServices<br>- - DeviceHealthServices<br>- -> GBoard<br>-
- GBoard<br>- -> GoogleCalendar<br>- - GoogleCalendar<br>- -> GoogleRecorder<br>-
- GoogleRecorder<br>- -> GoogleFiles<br>- - GoogleFiles<br>- - StorageManager<br>-
- DocumentsUIGoogle<br>- -> MarkupGoogle<br>- - MarkupGoogle<br>- -> GoogleTTS<br>-
- GoogleTTS<br>- -> GoogleSounds<br>- - GoogleSounds<br>- -> DeviceSetup<br>-
- DeviceSetup<br>- -> AndroidAuto<br>- - AndroidAuto<br>- -> GooglePartnerSetup<br>-
- GooglePartnerSetup<br>- -> AndroidDevicePolicy<br>- - AndroidDevicePolicy
title: 20240212 (bartixxx.config)
- question:
- content:
- ans: Download <a style="color:blue" target="_blank" href="https://sourceforge.net/projects/nikgapps/files/Elite-Releases/Bartixxx/NikGapps-T/30-Jan-2024/NikGapps-bartixxx-arm64-13-20240130-signed.zip/download">NikGapps-bartixxx-arm64-13-20240130-signed.zip
(329.85 MB)</a>
- ans: What's included?<br>- -> Core<br>- - ExtraFiles<br>- - GooglePlayStore<br>-
- GoogleServicesFramework<br>- - GoogleContactsSyncAdapter<br>- - GoogleCalendarSyncAdapter<br>-
- GmsCore<br>- -> DigitalWellbeing<br>- - DigitalWellbeing<br>- -> GoogleMessages<br>-
- GoogleMessages<br>- -> GoogleDialer<br>- - GoogleDialer<br>- -> GoogleContacts<br>-
- GoogleContacts<br>- -> CarrierServices<br>- - CarrierServices<br>- ->
GoogleClock<br>- - GoogleClock<br>- -> SetupWizard<br>- - SetupWizard<br>-
- GoogleRestore<br>- - GoogleOneTimeInitializer<br>- -> GoogleCalculator<br>-
- GoogleCalculator<br>- -> GoogleLocationHistory<br>- - GoogleLocationHistory<br>-
-> DeviceHealthServices<br>- - DeviceHealthServices<br>- -> GBoard<br>-
- GBoard<br>- -> GoogleCalendar<br>- - GoogleCalendar<br>- -> GoogleRecorder<br>-
- GoogleRecorder<br>- -> GoogleFiles<br>- - GoogleFiles<br>- - StorageManager<br>-
- DocumentsUIGoogle<br>- -> MarkupGoogle<br>- - MarkupGoogle<br>- -> GoogleTTS<br>-
- GoogleTTS<br>- -> GoogleSounds<br>- - GoogleSounds<br>- -> DeviceSetup<br>-
- DeviceSetup<br>- -> AndroidAuto<br>- - AndroidAuto<br>- -> GooglePartnerSetup<br>-
- GooglePartnerSetup<br>- -> AndroidDevicePolicy<br>- - AndroidDevicePolicy
title: 20240130 (bartixxx.config)
- question:
- content:
- ans: Download <a style="color:blue" target="_blank" href="https://sourceforge.net/projects/nikgapps/files/Elite-Releases/Bartixxx/NikGapps-T/07-Nov-2023/NikGapps-bartixxx-arm64-13-20231107-signed.zip/download">NikGapps-bartixxx-arm64-13-20231107-signed.zip
(364.66 MB)</a>
- ans: What's included?<br>- -> Core<br>- - ExtraFiles<br>- - GooglePlayStore<br>-
- GoogleServicesFramework<br>- - GoogleContactsSyncAdapter<br>- - GoogleCalendarSyncAdapter<br>-
- GmsCore<br>- -> DigitalWellbeing<br>- -> GoogleMessages<br>- -> GoogleDialer<br>-
-> GoogleContacts<br>- -> CarrierServices<br>- -> GoogleClock<br>- -> SetupWizard<br>-
- SetupWizard<br>- - GoogleRestore<br>- - GoogleOneTimeInitializer<br>-
-> GoogleCalculator<br>- -> GoogleLocationHistory<br>- -> DeviceHealthServices<br>-
-> GBoard<br>- -> GoogleCalendar<br>- -> PixelLauncher<br>- - DevicePersonalizationServices<br>-
- PrivateComputeServices<br>- -> GoogleRecorder<br>- -> GoogleFiles<br>-
- GoogleFiles<br>- - StorageManager<br>- - DocumentsUIGoogle<br>- -> MarkupGoogle<br>-
-> GoogleTTS<br>- -> GoogleSounds<br>- -> DeviceSetup<br>- -> AndroidAuto<br>-
-> GooglePartnerSetup<br>- -> AndroidDevicePolicy
title: 20231107 (bartixxx.config)
id: Bartixxx32_Android13
title: Android 13
- content:
- question:
- content:
- ans: Download <a style="color:blue" target="_blank" href="https://sourceforge.net/projects/nikgapps/files/Elite-Releases/Bartixxx/NikGapps-U/19-Apr-2024/NikGapps-bartixxx-arm64-14-20240419-signed.zip/download">NikGapps-bartixxx-arm64-14-20240419-signed.zip
(352.7 MB)</a>
- ans: What's included?<br>- -> Core<br>- - ExtraFiles<br>- - GooglePlayStore<br>-
- GoogleServicesFramework<br>- - GoogleContactsSyncAdapter<br>- - GoogleCalendarSyncAdapter<br>-
- GmsCore<br>- -> DigitalWellbeing<br>- - DigitalWellbeing<br>- -> GoogleMessages<br>-
- GoogleMessages<br>- -> GoogleDialer<br>- - GoogleDialer<br>- -> GoogleContacts<br>-
- GoogleContacts<br>- -> CarrierServices<br>- - CarrierServices<br>- ->
GoogleClock<br>- - GoogleClock<br>- -> SetupWizard<br>- - SetupWizard<br>-
- GoogleRestore<br>- - GoogleOneTimeInitializer<br>- -> GoogleCalculator<br>-
- GoogleCalculator<br>- -> GoogleLocationHistory<br>- - GoogleLocationHistory<br>-
-> DeviceHealthServices<br>- - DeviceHealthServices<br>- -> GBoard<br>-
- GBoard<br>- -> GoogleCalendar<br>- - GoogleCalendar<br>- -> GoogleRecorder<br>-
- GoogleRecorder<br>- -> GoogleFiles<br>- - GoogleFiles<br>- - StorageManager<br>-
- DocumentsUIGoogle<br>- -> MarkupGoogle<br>- - MarkupGoogle<br>- -> GoogleTTS<br>-
- GoogleTTS<br>- -> GoogleSounds<br>- - GoogleSounds<br>- -> DeviceSetup<br>-
- DeviceSetup<br>- -> AndroidAuto<br>- - AndroidAuto<br>- -> GooglePartnerSetup<br>-
- GooglePartnerSetup<br>- -> AndroidDevicePolicy<br>- - AndroidDevicePolicy
title: 20240419 (bartixxx.config)
- question:
- content:
- ans: Download <a style="color:blue" target="_blank" href="https://sourceforge.net/projects/nikgapps/files/Elite-Releases/Bartixxx/NikGapps-U/07-Mar-2024/NikGapps-bartixxx-arm64-14-20240307-signed.zip/download">NikGapps-bartixxx-arm64-14-20240307-signed.zip
(344.31 MB)</a>
- ans: What's included?<br>- -> Core<br>- - ExtraFiles<br>- - GooglePlayStore<br>-
- GoogleServicesFramework<br>- - GoogleContactsSyncAdapter<br>- - GoogleCalendarSyncAdapter<br>-
- GmsCore<br>- -> DigitalWellbeing<br>- - DigitalWellbeing<br>- -> GoogleMessages<br>-
- GoogleMessages<br>- -> GoogleDialer<br>- - GoogleDialer<br>- -> GoogleContacts<br>-
- GoogleContacts<br>- -> CarrierServices<br>- - CarrierServices<br>- ->
GoogleClock<br>- - GoogleClock<br>- -> SetupWizard<br>- - SetupWizard<br>-
- GoogleRestore<br>- - GoogleOneTimeInitializer<br>- -> GoogleCalculator<br>-
- GoogleCalculator<br>- -> GoogleLocationHistory<br>- - GoogleLocationHistory<br>-
-> DeviceHealthServices<br>- - DeviceHealthServices<br>- -> GBoard<br>-
- GBoard<br>- -> GoogleCalendar<br>- - GoogleCalendar<br>- -> GoogleRecorder<br>-
- GoogleRecorder<br>- -> GoogleFiles<br>- - GoogleFiles<br>- - StorageManager<br>-
- DocumentsUIGoogle<br>- -> MarkupGoogle<br>- - MarkupGoogle<br>- -> GoogleTTS<br>-
- GoogleTTS<br>- -> GoogleSounds<br>- - GoogleSounds<br>- -> DeviceSetup<br>-
- DeviceSetup<br>- -> AndroidAuto<br>- - AndroidAuto<br>- -> GooglePartnerSetup<br>-
- GooglePartnerSetup<br>- -> AndroidDevicePolicy<br>- - AndroidDevicePolicy
title: 20240307 (bartixxx.config)
- question:
- content:
- ans: Download <a style="color:blue" target="_blank" href="https://sourceforge.net/projects/nikgapps/files/Elite-Releases/Bartixxx/NikGapps-U/10-Feb-2024/NikGapps-bartixxx-arm64-14-20240210-signed.zip/download">NikGapps-bartixxx-arm64-14-20240210-signed.zip
(344.31 MB)</a>
- ans: What's included?<br>- -> Core<br>- - ExtraFiles<br>- - GooglePlayStore<br>-
- GoogleServicesFramework<br>- - GoogleContactsSyncAdapter<br>- - GoogleCalendarSyncAdapter<br>-
- GmsCore<br>- -> DigitalWellbeing<br>- - DigitalWellbeing<br>- -> GoogleMessages<br>-
- GoogleMessages<br>- -> GoogleDialer<br>- - GoogleDialer<br>- -> GoogleContacts<br>-
- GoogleContacts<br>- -> CarrierServices<br>- - CarrierServices<br>- ->
GoogleClock<br>- - GoogleClock<br>- -> SetupWizard<br>- - SetupWizard<br>-
- GoogleRestore<br>- - GoogleOneTimeInitializer<br>- -> GoogleCalculator<br>-
- GoogleCalculator<br>- -> GoogleLocationHistory<br>- - GoogleLocationHistory<br>-
-> DeviceHealthServices<br>- - DeviceHealthServices<br>- -> GBoard<br>-
- GBoard<br>- -> GoogleCalendar<br>- - GoogleCalendar<br>- -> GoogleRecorder<br>-
- GoogleRecorder<br>- -> GoogleFiles<br>- - GoogleFiles<br>- - StorageManager<br>-
- DocumentsUIGoogle<br>- -> MarkupGoogle<br>- - MarkupGoogle<br>- -> GoogleTTS<br>-
- GoogleTTS<br>- -> GoogleSounds<br>- - GoogleSounds<br>- -> DeviceSetup<br>-
- DeviceSetup<br>- -> AndroidAuto<br>- - AndroidAuto<br>- -> GooglePartnerSetup<br>-
- GooglePartnerSetup<br>- -> AndroidDevicePolicy<br>- - AndroidDevicePolicy
title: 20240210 (bartixxx.config)
- question:
- content:
- ans: Download <a style="color:blue" target="_blank" href="https://sourceforge.net/projects/nikgapps/files/Elite-Releases/Bartixxx/NikGapps-U/07-Feb-2024/NikGapps-bartixxx-arm64-14-20240207-signed.zip/download">NikGapps-bartixxx-arm64-14-20240207-signed.zip
(344.31 MB)</a>
- ans: What's included?<br>- -> Core<br>- - ExtraFiles<br>- - GooglePlayStore<br>-
- GoogleServicesFramework<br>- - GoogleContactsSyncAdapter<br>- - GoogleCalendarSyncAdapter<br>-
- GmsCore<br>- -> DigitalWellbeing<br>- - DigitalWellbeing<br>- -> GoogleMessages<br>-
- GoogleMessages<br>- -> GoogleDialer<br>- - GoogleDialer<br>- -> GoogleContacts<br>-
- GoogleContacts<br>- -> CarrierServices<br>- - CarrierServices<br>- ->
GoogleClock<br>- - GoogleClock<br>- -> SetupWizard<br>- - SetupWizard<br>-
- GoogleRestore<br>- - GoogleOneTimeInitializer<br>- -> GoogleCalculator<br>-
- GoogleCalculator<br>- -> GoogleLocationHistory<br>- - GoogleLocationHistory<br>-
-> DeviceHealthServices<br>- - DeviceHealthServices<br>- -> GBoard<br>-
- GBoard<br>- -> GoogleCalendar<br>- - GoogleCalendar<br>- -> GoogleRecorder<br>-
- GoogleRecorder<br>- -> GoogleFiles<br>- - GoogleFiles<br>- - StorageManager<br>-
- DocumentsUIGoogle<br>- -> MarkupGoogle<br>- - MarkupGoogle<br>- -> GoogleTTS<br>-
- GoogleTTS<br>- -> GoogleSounds<br>- - GoogleSounds<br>- -> DeviceSetup<br>-
- DeviceSetup<br>- -> AndroidAuto<br>- - AndroidAuto<br>- -> GooglePartnerSetup<br>-
- GooglePartnerSetup<br>- -> AndroidDevicePolicy<br>- - AndroidDevicePolicy
title: 20240207 (bartixxx.config)
- question:
- content:
- ans: Download <a style="color:blue" target="_blank" href="https://sourceforge.net/projects/nikgapps/files/Elite-Releases/Bartixxx/NikGapps-U/29-Jan-2024/NikGapps-bartixxx-arm64-14-20240129-signed.zip/download">NikGapps-bartixxx-arm64-14-20240129-signed.zip
(344.25 MB)</a>
- ans: What's included?<br>- -> Core<br>- - ExtraFiles<br>- - GooglePlayStore<br>-
- GoogleServicesFramework<br>- - GoogleContactsSyncAdapter<br>- - GoogleCalendarSyncAdapter<br>-
- GmsCore<br>- -> DigitalWellbeing<br>- - DigitalWellbeing<br>- -> GoogleMessages<br>-
- GoogleMessages<br>- -> GoogleDialer<br>- - GoogleDialer<br>- -> GoogleContacts<br>-
- GoogleContacts<br>- -> CarrierServices<br>- - CarrierServices<br>- ->
GoogleClock<br>- - GoogleClock<br>- -> SetupWizard<br>- - SetupWizard<br>-
- GoogleRestore<br>- - GoogleOneTimeInitializer<br>- -> GoogleCalculator<br>-
- GoogleCalculator<br>- -> GoogleLocationHistory<br>- - GoogleLocationHistory<br>-
-> DeviceHealthServices<br>- - DeviceHealthServices<br>- -> GBoard<br>-
- GBoard<br>- -> GoogleCalendar<br>- - GoogleCalendar<br>- -> GoogleRecorder<br>-
- GoogleRecorder<br>- -> GoogleFiles<br>- - GoogleFiles<br>- - StorageManager<br>-
- DocumentsUIGoogle<br>- -> MarkupGoogle<br>- - MarkupGoogle<br>- -> GoogleTTS<br>-
- GoogleTTS<br>- -> GoogleSounds<br>- - GoogleSounds<br>- -> DeviceSetup<br>-
- DeviceSetup<br>- -> AndroidAuto<br>- - AndroidAuto<br>- -> GooglePartnerSetup<br>-
- GooglePartnerSetup<br>- -> AndroidDevicePolicy<br>- - AndroidDevicePolicy
title: 20240129 (bartixxx.config)
id: Bartixxx32_Android14
title: Android 14
CanerKaraca23:
- content:
- question:
- content:
- ans: Download <a style="color:blue" target="_blank" href="https://sourceforge.net/projects/nikgapps/files/Elite-Releases/CanerKaraca/NikGapps-U/19-Apr-2024/NikGapps-CanerKaraca-arm64-14-20240419-signed.zip/download">NikGapps-CanerKaraca-arm64-14-20240419-signed.zip
(556.86 MB)</a>
- ans: What's included?<br>- -> Core<br>- - ExtraFiles<br>- - GooglePlayStore<br>-
- GoogleServicesFramework<br>- - GoogleContactsSyncAdapter<br>- - GoogleCalendarSyncAdapter<br>-
- GmsCore<br>- -> GoogleMessages<br>- - GoogleMessages<br>- -> GoogleDialer<br>-
- GoogleDialer<br>- -> GoogleContacts<br>- - GoogleContacts<br>- -> CarrierServices<br>-
- CarrierServices<br>- -> GoogleClock<br>- - GoogleClock<br>- -> GoogleCalculator<br>-
- GoogleCalculator<br>- -> GoogleMaps<br>- - GoogleMaps<br>- -> GooglePhotos<br>-
- GooglePhotos<br>- -> GBoard<br>- - GBoard<br>- -> GoogleCalendar<br>-
- GoogleCalendar<br>- -> GoogleKeep<br>- - GoogleKeep<br>- -> GoogleRecorder<br>-
- GoogleRecorder<br>- -> GoogleFiles<br>- - GoogleFiles<br>- - StorageManager<br>-
- DocumentsUIGoogle<br>- -> MarkupGoogle<br>- - MarkupGoogle<br>- -> GoogleTTS<br>-
- GoogleTTS<br>- -> GoogleSounds<br>- - GoogleSounds<br>- -> GoogleChrome<br>-
- GoogleChrome<br>- - WebViewGoogle<br>- - TrichromeLibrary<br>- -> Gmail<br>-
- Gmail
title: 20240419 (CanerKaraca.config)
- question:
- content:
- ans: Download <a style="color:blue" target="_blank" href="https://sourceforge.net/projects/nikgapps/files/Elite-Releases/CanerKaraca/NikGapps-U/07-Mar-2024/NikGapps-CanerKaraca-arm64-14-20240307-signed.zip/download">NikGapps-CanerKaraca-arm64-14-20240307-signed.zip
(564.62 MB)</a>
- ans: What's included?<br>- -> Core<br>- - ExtraFiles<br>- - GooglePlayStore<br>-
- GoogleServicesFramework<br>- - GoogleContactsSyncAdapter<br>- - GoogleCalendarSyncAdapter<br>-
- GmsCore<br>- -> GoogleMessages<br>- - GoogleMessages<br>- -> GoogleDialer<br>-
- GoogleDialer<br>- -> GoogleContacts<br>- - GoogleContacts<br>- -> CarrierServices<br>-
- CarrierServices<br>- -> GoogleClock<br>- - GoogleClock<br>- -> SetupWizard<br>-
- SetupWizard<br>- - GoogleRestore<br>- - GoogleOneTimeInitializer<br>-
-> GoogleCalculator<br>- - GoogleCalculator<br>- -> GoogleMaps<br>- - GoogleMaps<br>-
-> GooglePhotos<br>- - GooglePhotos<br>- -> DeviceHealthServices<br>- -
DeviceHealthServices<br>- -> GBoard<br>- - GBoard<br>- -> GoogleCalendar<br>-
- GoogleCalendar<br>- -> GoogleKeep<br>- - GoogleKeep<br>- -> PixelSpecifics<br>-
- DevicePersonalizationServices<br>- - SettingsServices<br>- - PrivateComputeServices<br>-
- PixelWeather<br>- -> GoogleRecorder<br>- - GoogleRecorder<br>- -> GoogleFiles<br>-
- GoogleFiles<br>- - StorageManager<br>- - DocumentsUIGoogle<br>- -> MarkupGoogle<br>-
- MarkupGoogle<br>- -> GoogleSounds<br>- - GoogleSounds<br>- -> GoogleChrome<br>-
- GoogleChrome<br>- - WebViewGoogle<br>- - TrichromeLibrary<br>- -> Gmail<br>-
- Gmail<br>- -> DeviceSetup<br>- - DeviceSetup
title: 20240307 (CanerKaraca.config)
- question:
- content:
- ans: Download <a style="color:blue" target="_blank" href="https://sourceforge.net/projects/nikgapps/files/Elite-Releases/CanerKaraca/NikGapps-U/26-Feb-2024/NikGapps-CanerKaraca-arm64-14-20240226-signed.zip/download">NikGapps-CanerKaraca-arm64-14-20240226-signed.zip
(564.62 MB)</a>
- ans: What's included?<br>- -> Core<br>- - ExtraFiles<br>- - GooglePlayStore<br>-
- GoogleServicesFramework<br>- - GoogleContactsSyncAdapter<br>- - GoogleCalendarSyncAdapter<br>-
- GmsCore<br>- -> GoogleMessages<br>- - GoogleMessages<br>- -> GoogleDialer<br>-
- GoogleDialer<br>- -> GoogleContacts<br>- - GoogleContacts<br>- -> CarrierServices<br>-
- CarrierServices<br>- -> GoogleClock<br>- - GoogleClock<br>- -> SetupWizard<br>-
- SetupWizard<br>- - GoogleRestore<br>- - GoogleOneTimeInitializer<br>-
-> GoogleCalculator<br>- - GoogleCalculator<br>- -> GoogleMaps<br>- - GoogleMaps<br>-
-> GooglePhotos<br>- - GooglePhotos<br>- -> DeviceHealthServices<br>- -
DeviceHealthServices<br>- -> GBoard<br>- - GBoard<br>- -> GoogleCalendar<br>-
- GoogleCalendar<br>- -> GoogleKeep<br>- - GoogleKeep<br>- -> PixelSpecifics<br>-
- DevicePersonalizationServices<br>- - SettingsServices<br>- - PrivateComputeServices<br>-
- PixelWeather<br>- -> GoogleRecorder<br>- - GoogleRecorder<br>- -> GoogleFiles<br>-
- GoogleFiles<br>- - StorageManager<br>- - DocumentsUIGoogle<br>- -> MarkupGoogle<br>-
- MarkupGoogle<br>- -> GoogleSounds<br>- - GoogleSounds<br>- -> GoogleChrome<br>-
- GoogleChrome<br>- - WebViewGoogle<br>- - TrichromeLibrary<br>- -> Gmail<br>-
- Gmail<br>- -> DeviceSetup<br>- - DeviceSetup
title: 20240226 (CanerKaraca.config)
- question:
- content:
- ans: Download <a style="color:blue" target="_blank" href="https://sourceforge.net/projects/nikgapps/files/Elite-Releases/CanerKaraca/NikGapps-U/17-Feb-2024/NikGapps-CanerKaraca-arm64-14-20240217-signed.zip/download">NikGapps-CanerKaraca-arm64-14-20240217-signed.zip
(660.23 MB)</a>
- ans: What's included?<br>- -> Core<br>- - ExtraFiles<br>- - GooglePlayStore<br>-
- GoogleServicesFramework<br>- - GoogleContactsSyncAdapter<br>- - GoogleCalendarSyncAdapter<br>-
- GmsCore<br>- -> GoogleMessages<br>- - GoogleMessages<br>- -> GoogleDialer<br>-
- GoogleDialer<br>- -> GoogleContacts<br>- - GoogleContacts<br>- -> CarrierServices<br>-
- CarrierServices<br>- -> GoogleClock<br>- - GoogleClock<br>- -> SetupWizard<br>-
- SetupWizard<br>- - GoogleRestore<br>- - GoogleOneTimeInitializer<br>-
-> GoogleCalculator<br>- - GoogleCalculator<br>- -> GoogleMaps<br>- - GoogleMaps<br>-
-> GooglePhotos<br>- - GooglePhotos<br>- -> DeviceHealthServices<br>- -
DeviceHealthServices<br>- -> GBoard<br>- - GBoard<br>- -> GoogleCalendar<br>-
- GoogleCalendar<br>- -> GoogleKeep<br>- - GoogleKeep<br>- -> PixelSpecifics<br>-
- DevicePersonalizationServices<br>- - SettingsServices<br>- - PrivateComputeServices<br>-
- PixelWeather<br>- -> GoogleRecorder<br>- - GoogleRecorder<br>- -> GoogleFiles<br>-
- GoogleFiles<br>- - StorageManager<br>- - DocumentsUIGoogle<br>- -> MarkupGoogle<br>-
- MarkupGoogle<br>- -> GoogleSearch<br>- - Velvet<br>- - Assistant<br>-
-> GoogleSounds<br>- - GoogleSounds<br>- -> GoogleChrome<br>- - GoogleChrome<br>-
- WebViewGoogle<br>- - TrichromeLibrary<br>- -> Gmail<br>- - Gmail<br>-
-> DeviceSetup<br>- - DeviceSetup
title: 20240217 (CanerKaraca.config)
- question:
- content:
- ans: Download <a style="color:blue" target="_blank" href="https://sourceforge.net/projects/nikgapps/files/Elite-Releases/CanerKaraca/NikGapps-U/12-Feb-2024/NikGapps-CanerKaraca-arm64-14-20240212-signed.zip/download">NikGapps-CanerKaraca-arm64-14-20240212-signed.zip
(660.17 MB)</a>
- ans: What's included?<br>- -> Core<br>- - ExtraFiles<br>- - GooglePlayStore<br>-
- GoogleServicesFramework<br>- - GoogleContactsSyncAdapter<br>- - GoogleCalendarSyncAdapter<br>-
- GmsCore<br>- -> GoogleMessages<br>- - GoogleMessages<br>- -> GoogleDialer<br>-
- GoogleDialer<br>- -> GoogleContacts<br>- - GoogleContacts<br>- -> CarrierServices<br>-
- CarrierServices<br>- -> GoogleClock<br>- - GoogleClock<br>- -> SetupWizard<br>-
- SetupWizard<br>- - GoogleRestore<br>- - GoogleOneTimeInitializer<br>-
-> GoogleCalculator<br>- - GoogleCalculator<br>- -> GoogleMaps<br>- - GoogleMaps<br>-
-> GooglePhotos<br>- - GooglePhotos<br>- -> DeviceHealthServices<br>- -
DeviceHealthServices<br>- -> GBoard<br>- - GBoard<br>- -> GoogleCalendar<br>-
- GoogleCalendar<br>- -> GoogleKeep<br>- - GoogleKeep<br>- -> PixelSpecifics<br>-
- DevicePersonalizationServices<br>- - SettingsServices<br>- - PrivateComputeServices<br>-
- PixelThemes<br>- - PixelWeather<br>- -> GoogleRecorder<br>- - GoogleRecorder<br>-
-> GoogleFiles<br>- - GoogleFiles<br>- - StorageManager<br>- - DocumentsUIGoogle<br>-
-> MarkupGoogle<br>- - MarkupGoogle<br>- -> GoogleSearch<br>- - Velvet<br>-
- Assistant<br>- -> GoogleSounds<br>- - GoogleSounds<br>- -> GoogleChrome<br>-
- GoogleChrome<br>- - WebViewGoogle<br>- - TrichromeLibrary<br>- -> Gmail<br>-
- Gmail<br>- -> DeviceSetup<br>- - DeviceSetup
title: 20240212 (CanerKaraca.config)
id: CanerKaraca23_Android14
title: Android 14
DeadlyShroud:
- content:
- question:
- content:
- ans: Download <a style="color:blue" target="_blank" href="https://sourceforge.net/projects/nikgapps/files/Elite-Releases/PrateekGurjar/NikGapps-U/19-Apr-2024/NikGapps-Munch-arm64-14-20240419-signed.zip/download">NikGapps-Munch-arm64-14-20240419-signed.zip
(665.26 MB)</a>
- ans: What's included?<br>- -> Core<br>- - ExtraFiles<br>- - GooglePlayStore<br>-
- GoogleServicesFramework<br>- - GoogleContactsSyncAdapter<br>- - GoogleCalendarSyncAdapter<br>-
- GmsCore<br>- -> DigitalWellbeing<br>- - DigitalWellbeing<br>- -> GoogleMessages<br>-
- GoogleMessages<br>- -> GoogleContacts<br>- - GoogleContacts<br>- -> CarrierServices<br>-
- CarrierServices<br>- -> GoogleClock<br>- - GoogleClock<br>- -> SetupWizard<br>-
- SetupWizard<br>- - GoogleRestore<br>- - GoogleOneTimeInitializer<br>-
-> GoogleCalculator<br>- - GoogleCalculator<br>- -> Drive<br>- - Drive<br>-
-> GoogleMaps<br>- - GoogleMaps<br>- -> GoogleLocationHistory<br>- - GoogleLocationHistory<br>-
-> GooglePhotos<br>- - GooglePhotos<br>- -> DeviceHealthServices<br>- -
DeviceHealthServices<br>- -> GBoard<br>- - GBoard<br>- -> GoogleCalendar<br>-
- GoogleCalendar<br>- -> GoogleKeep<br>- - GoogleKeep<br>- -> PixelSpecifics<br>-
- DevicePersonalizationServices<br>- - SettingsServices<br>- - PrivateComputeServices<br>-
-> MarkupGoogle<br>- - MarkupGoogle<br>- -> GoogleTTS<br>- - GoogleTTS<br>-
-> GoogleSearch<br>- - Velvet<br>- - Assistant<br>- -> GoogleSounds<br>-
- GoogleSounds<br>- -> GoogleChrome<br>- - GoogleChrome<br>- - WebViewGoogle<br>-
- TrichromeLibrary<br>- -> Gmail<br>- - Gmail<br>- -> DeviceSetup<br>- -
DeviceSetup<br>- -> GooglePartnerSetup<br>- - GooglePartnerSetup
title: 20240419 (Munch.config)
- question:
- content:
- ans: Download <a style="color:blue" target="_blank" href="https://sourceforge.net/projects/nikgapps/files/Elite-Releases/PrateekGurjar/NikGapps-U/07-Mar-2024/NikGapps-Munch-arm64-14-20240307-signed.zip/download">NikGapps-Munch-arm64-14-20240307-signed.zip
(649.69 MB)</a>
- ans: What's included?<br>- -> Core<br>- - ExtraFiles<br>- - GooglePlayStore<br>-
- GoogleServicesFramework<br>- - GoogleContactsSyncAdapter<br>- - GoogleCalendarSyncAdapter<br>-
- GmsCore<br>- -> DigitalWellbeing<br>- - DigitalWellbeing<br>- -> GoogleMessages<br>-
- GoogleMessages<br>- -> GoogleContacts<br>- - GoogleContacts<br>- -> CarrierServices<br>-
- CarrierServices<br>- -> GoogleClock<br>- - GoogleClock<br>- -> SetupWizard<br>-
- SetupWizard<br>- - GoogleRestore<br>- - GoogleOneTimeInitializer<br>-
-> GoogleCalculator<br>- - GoogleCalculator<br>- -> Drive<br>- - Drive<br>-
-> GoogleMaps<br>- - GoogleMaps<br>- -> GoogleLocationHistory<br>- - GoogleLocationHistory<br>-
-> GooglePhotos<br>- - GooglePhotos<br>- -> DeviceHealthServices<br>- -
DeviceHealthServices<br>- -> GBoard<br>- - GBoard<br>- -> GoogleCalendar<br>-
- GoogleCalendar<br>- -> GoogleKeep<br>- - GoogleKeep<br>- -> PixelSpecifics<br>-
- DevicePersonalizationServices<br>- - SettingsServices<br>- - PrivateComputeServices<br>-
-> MarkupGoogle<br>- - MarkupGoogle<br>- -> GoogleTTS<br>- - GoogleTTS<br>-
-> GoogleSearch<br>- - Velvet<br>- - Assistant<br>- -> GoogleSounds<br>-
- GoogleSounds<br>- -> GoogleChrome<br>- - GoogleChrome<br>- - WebViewGoogle<br>-
- TrichromeLibrary<br>- -> Gmail<br>- - Gmail<br>- -> DeviceSetup<br>- -
DeviceSetup<br>- -> GooglePartnerSetup<br>- - GooglePartnerSetup
title: 20240307 (Munch.config)
- question:
- content:
- ans: Download <a style="color:blue" target="_blank" href="https://sourceforge.net/projects/nikgapps/files/Elite-Releases/PrateekGurjar/NikGapps-U/23-Feb-2024/NikGapps-Munch-arm64-14-20240223-signed.zip/download">NikGapps-Munch-arm64-14-20240223-signed.zip
(649.66 MB)</a>
- ans: What's included?<br>- -> Core<br>- - ExtraFiles<br>- - GooglePlayStore<br>-
- GoogleServicesFramework<br>- - GoogleContactsSyncAdapter<br>- - GoogleCalendarSyncAdapter<br>-
- GmsCore<br>- -> DigitalWellbeing<br>- - DigitalWellbeing<br>- -> GoogleMessages<br>-
- GoogleMessages<br>- -> GoogleContacts<br>- - GoogleContacts<br>- -> CarrierServices<br>-
- CarrierServices<br>- -> GoogleClock<br>- - GoogleClock<br>- -> SetupWizard<br>-
- SetupWizard<br>- - GoogleRestore<br>- - GoogleOneTimeInitializer<br>-
-> GoogleCalculator<br>- - GoogleCalculator<br>- -> Drive<br>- - Drive<br>-
-> GoogleMaps<br>- - GoogleMaps<br>- -> GoogleLocationHistory<br>- - GoogleLocationHistory<br>-
-> GooglePhotos<br>- - GooglePhotos<br>- -> DeviceHealthServices<br>- -
DeviceHealthServices<br>- -> GBoard<br>- - GBoard<br>- -> GoogleCalendar<br>-
- GoogleCalendar<br>- -> GoogleKeep<br>- - GoogleKeep<br>- -> PixelSpecifics<br>-
- DevicePersonalizationServices<br>- - SettingsServices<br>- - PrivateComputeServices<br>-
-> MarkupGoogle<br>- - MarkupGoogle<br>- -> GoogleTTS<br>- - GoogleTTS<br>-
-> GoogleSearch<br>- - Velvet<br>- - Assistant<br>- -> GoogleSounds<br>-
- GoogleSounds<br>- -> GoogleChrome<br>- - GoogleChrome<br>- - WebViewGoogle<br>-
- TrichromeLibrary<br>- -> Gmail<br>- - Gmail<br>- -> DeviceSetup<br>- -
DeviceSetup<br>- -> GooglePartnerSetup<br>- - GooglePartnerSetup
title: 20240223 (Munch.config)
id: DeadlyShroud_Android14
title: Android 14
Dreamer-Arcana:
- content:
- question:
- content:
- ans: Download <a style="color:blue" target="_blank" href="https://sourceforge.net/projects/nikgapps/files/Elite-Releases/UMR85N/NikGapps-T/19-Apr-2024/NikGapps-Dreamer-Arcana-arm64-13-20240419-signed.zip/download">NikGapps-Dreamer-Arcana-arm64-13-20240419-signed.zip
(427.57 MB)</a>
- ans: What's included?<br>- -> Core<br>- - GooglePlayStore<br>- - GoogleServicesFramework<br>-
- GoogleContactsSyncAdapter<br>- - GoogleCalendarSyncAdapter<br>- - GmsCore<br>-
-> GoogleMessages<br>- - GoogleMessages<br>- -> GoogleDialer<br>- - GoogleDialer<br>-
-> GoogleContacts<br>- - GoogleContacts<br>- -> CarrierServices<br>- - CarrierServices<br>-
-> GoogleClock<br>- - GoogleClock<br>- -> GoogleCalculator<br>- - GoogleCalculator<br>-
-> Drive<br>- - Drive<br>- -> GooglePhotos<br>- - GooglePhotos<br>- -> GoogleCalendar<br>-
- GoogleCalendar<br>- -> GoogleRecorder<br>- - GoogleRecorder<br>- -> GoogleChrome<br>-
- GoogleChrome<br>- - WebViewGoogle<br>- - TrichromeLibrary<br>- -> Gmail<br>-
- Gmail<br>- -> YouTube<br>- - YouTube<br>- -> YouTubeMusic<br>- - YouTubeMusic
title: 20240419 (Dreamer-Arcana.config)
- question:
- content:
- ans: Download <a style="color:blue" target="_blank" href="https://sourceforge.net/projects/nikgapps/files/Elite-Releases/UMR85N/NikGapps-T/07-Mar-2024/NikGapps-Dreamer-Arcana-arm64-13-20240307-signed.zip/download">NikGapps-Dreamer-Arcana-arm64-13-20240307-signed.zip
(427.56 MB)</a>
- ans: What's included?<br>- -> Core<br>- - GooglePlayStore<br>- - GoogleServicesFramework<br>-
- GoogleContactsSyncAdapter<br>- - GoogleCalendarSyncAdapter<br>- - GmsCore<br>-
-> GoogleMessages<br>- - GoogleMessages<br>- -> GoogleDialer<br>- - GoogleDialer<br>-
-> GoogleContacts<br>- - GoogleContacts<br>- -> CarrierServices<br>- - CarrierServices<br>-
-> GoogleClock<br>- - GoogleClock<br>- -> GoogleCalculator<br>- - GoogleCalculator<br>-
-> Drive<br>- - Drive<br>- -> GooglePhotos<br>- - GooglePhotos<br>- -> GoogleCalendar<br>-
- GoogleCalendar<br>- -> GoogleRecorder<br>- - GoogleRecorder<br>- -> GoogleChrome<br>-
- GoogleChrome<br>- - WebViewGoogle<br>- - TrichromeLibrary<br>- -> Gmail<br>-
- Gmail<br>- -> YouTube<br>- - YouTube<br>- -> YouTubeMusic<br>- - YouTubeMusic
title: 20240307 (Dreamer-Arcana.config)
- question:
- content:
- ans: Download <a style="color:blue" target="_blank" href="https://sourceforge.net/projects/nikgapps/files/Elite-Releases/UMR85N/NikGapps-T/12-Feb-2024/NikGapps-Dreamer-Arcana-arm64-13-20240212-signed.zip/download">NikGapps-Dreamer-Arcana-arm64-13-20240212-signed.zip
(427.58 MB)</a>
- ans: What's included?<br>- -> Core<br>- - GooglePlayStore<br>- - GoogleServicesFramework<br>-
- GoogleContactsSyncAdapter<br>- - GoogleCalendarSyncAdapter<br>- - GmsCore<br>-
-> GoogleMessages<br>- - GoogleMessages<br>- -> GoogleDialer<br>- - GoogleDialer<br>-
-> GoogleContacts<br>- - GoogleContacts<br>- -> CarrierServices<br>- - CarrierServices<br>-
-> GoogleClock<br>- - GoogleClock<br>- -> GoogleCalculator<br>- - GoogleCalculator<br>-
-> Drive<br>- - Drive<br>- -> GooglePhotos<br>- - GooglePhotos<br>- -> GoogleCalendar<br>-
- GoogleCalendar<br>- -> GoogleRecorder<br>- - GoogleRecorder<br>- -> GoogleChrome<br>-
- GoogleChrome<br>- - WebViewGoogle<br>- - TrichromeLibrary<br>- -> Gmail<br>-
- Gmail<br>- -> YouTube<br>- - YouTube<br>- -> YouTubeMusic<br>- - YouTubeMusic
title: 20240212 (Dreamer-Arcana.config)
- question:
- content:
- ans: Download <a style="color:blue" target="_blank" href="https://sourceforge.net/projects/nikgapps/files/Elite-Releases/UMR85N/NikGapps-T/30-Jan-2024/NikGapps-Dreamer-Arcana-arm64-13-20240130-signed.zip/download">NikGapps-Dreamer-Arcana-arm64-13-20240130-signed.zip
(427.54 MB)</a>
- ans: What's included?<br>- -> Core<br>- - GooglePlayStore<br>- - GoogleServicesFramework<br>-
- GoogleContactsSyncAdapter<br>- - GoogleCalendarSyncAdapter<br>- - GmsCore<br>-
-> GoogleMessages<br>- - GoogleMessages<br>- -> GoogleDialer<br>- - GoogleDialer<br>-
-> GoogleContacts<br>- - GoogleContacts<br>- -> CarrierServices<br>- - CarrierServices<br>-
-> GoogleClock<br>- - GoogleClock<br>- -> GoogleCalculator<br>- - GoogleCalculator<br>-
-> Drive<br>- - Drive<br>- -> GooglePhotos<br>- - GooglePhotos<br>- -> GoogleCalendar<br>-
- GoogleCalendar<br>- -> GoogleRecorder<br>- - GoogleRecorder<br>- -> GoogleChrome<br>-
- GoogleChrome<br>- - WebViewGoogle<br>- - TrichromeLibrary<br>- -> Gmail<br>-
- Gmail<br>- -> YouTube<br>- - YouTube<br>- -> YouTubeMusic<br>- - YouTubeMusic
title: 20240130 (Dreamer-Arcana.config)
- question:
- content:
- ans: Download <a style="color:blue" target="_blank" href="https://sourceforge.net/projects/nikgapps/files/Elite-Releases/UMR85N/NikGapps-T/07-Nov-2023/NikGapps-Dreamer-Arcana-arm64-13-20231107-signed.zip/download">NikGapps-Dreamer-Arcana-arm64-13-20231107-signed.zip
(427.54 MB)</a>
- ans: What's included?<br>- -> Core<br>- - GooglePlayStore<br>- - GoogleServicesFramework<br>-
- GoogleContactsSyncAdapter<br>- - GoogleCalendarSyncAdapter<br>- - GmsCore<br>-
-> GoogleMessages<br>- -> GoogleDialer<br>- -> GoogleContacts<br>- -> CarrierServices<br>-
-> GoogleClock<br>- -> GoogleCalculator<br>- -> Drive<br>- -> GooglePhotos<br>-
-> GoogleCalendar<br>- -> GoogleRecorder<br>- -> GoogleChrome<br>- - GoogleChrome<br>-
- WebViewGoogle<br>- - TrichromeLibrary<br>- -> Gmail<br>- -> YouTube<br>-
-> YouTubeMusic
title: 20231107 (Dreamer-Arcana.config)
id: Dreamer-Arcana_Android13
title: Android 13
- content:
- question:
- content:
- ans: Download <a style="color:blue" target="_blank" href="https://sourceforge.net/projects/nikgapps/files/Elite-Releases/UMR85N/NikGapps-U/19-Apr-2024/NikGapps-Dreamer-Arcana-arm64-14-20240419-signed.zip/download">NikGapps-Dreamer-Arcana-arm64-14-20240419-signed.zip
(461.66 MB)</a>
- ans: What's included?<br>- -> Core<br>- - GooglePlayStore<br>- - GoogleServicesFramework<br>-
- GoogleContactsSyncAdapter<br>- - GoogleCalendarSyncAdapter<br>- - GmsCore<br>-
-> GoogleMessages<br>- - GoogleMessages<br>- -> GoogleDialer<br>- - GoogleDialer<br>-
-> GoogleContacts<br>- - GoogleContacts<br>- -> CarrierServices<br>- - CarrierServices<br>-
-> GoogleClock<br>- - GoogleClock<br>- -> GoogleCalculator<br>- - GoogleCalculator<br>-
-> Drive<br>- - Drive<br>- -> GooglePhotos<br>- - GooglePhotos<br>- -> GoogleCalendar<br>-
- GoogleCalendar<br>- -> GoogleRecorder<br>- - GoogleRecorder<br>- -> GoogleChrome<br>-
- GoogleChrome<br>- - WebViewGoogle<br>- - TrichromeLibrary<br>- -> Gmail<br>-
- Gmail<br>- -> YouTube<br>- - YouTube<br>- -> YouTubeMusic<br>- - YouTubeMusic
title: 20240419 (Dreamer-Arcana.config)
- question:
- content:
- ans: Download <a style="color:blue" target="_blank" href="https://sourceforge.net/projects/nikgapps/files/Elite-Releases/UMR85N/NikGapps-U/07-Mar-2024/NikGapps-Dreamer-Arcana-arm64-14-20240307-signed.zip/download">NikGapps-Dreamer-Arcana-arm64-14-20240307-signed.zip
(451.48 MB)</a>
- ans: What's included?<br>- -> Core<br>- - GooglePlayStore<br>- - GoogleServicesFramework<br>-
- GoogleContactsSyncAdapter<br>- - GoogleCalendarSyncAdapter<br>- - GmsCore<br>-
-> GoogleMessages<br>- - GoogleMessages<br>- -> GoogleDialer<br>- - GoogleDialer<br>-
-> GoogleContacts<br>- - GoogleContacts<br>- -> CarrierServices<br>- - CarrierServices<br>-
-> GoogleClock<br>- - GoogleClock<br>- -> GoogleCalculator<br>- - GoogleCalculator<br>-
-> Drive<br>- - Drive<br>- -> GooglePhotos<br>- - GooglePhotos<br>- -> GoogleCalendar<br>-
- GoogleCalendar<br>- -> GoogleRecorder<br>- - GoogleRecorder<br>- -> GoogleChrome<br>-
- GoogleChrome<br>- - WebViewGoogle<br>- - TrichromeLibrary<br>- -> Gmail<br>-
- Gmail<br>- -> YouTube<br>- - YouTube<br>- -> YouTubeMusic<br>- - YouTubeMusic
title: 20240307 (Dreamer-Arcana.config)
- question:
- content:
- ans: Download <a style="color:blue" target="_blank" href="https://sourceforge.net/projects/nikgapps/files/Elite-Releases/UMR85N/NikGapps-U/12-Feb-2024/NikGapps-Dreamer-Arcana-arm64-14-20240212-signed.zip/download">NikGapps-Dreamer-Arcana-arm64-14-20240212-signed.zip
(451.39 MB)</a>
- ans: What's included?<br>- -> Core<br>- - GooglePlayStore<br>- - GoogleServicesFramework<br>-
- GoogleContactsSyncAdapter<br>- - GoogleCalendarSyncAdapter<br>- - GmsCore<br>-
-> GoogleMessages<br>- - GoogleMessages<br>- -> GoogleDialer<br>- - GoogleDialer<br>-
-> GoogleContacts<br>- - GoogleContacts<br>- -> CarrierServices<br>- - CarrierServices<br>-
-> GoogleClock<br>- - GoogleClock<br>- -> GoogleCalculator<br>- - GoogleCalculator<br>-
-> Drive<br>- - Drive<br>- -> GooglePhotos<br>- - GooglePhotos<br>- -> GoogleCalendar<br>-
- GoogleCalendar<br>- -> GoogleRecorder<br>- - GoogleRecorder<br>- -> GoogleChrome<br>-
- GoogleChrome<br>- - WebViewGoogle<br>- - TrichromeLibrary<br>- -> Gmail<br>-
- Gmail<br>- -> YouTube<br>- - YouTube<br>- -> YouTubeMusic<br>- - YouTubeMusic
title: 20240212 (Dreamer-Arcana.config)
- question:
- content:
- ans: Download <a style="color:blue" target="_blank" href="https://sourceforge.net/projects/nikgapps/files/Elite-Releases/UMR85N/NikGapps-U/07-Feb-2024/NikGapps-Dreamer-Arcana-arm64-14-20240207-signed.zip/download">NikGapps-Dreamer-Arcana-arm64-14-20240207-signed.zip
(451.39 MB)</a>
- ans: What's included?<br>- -> Core<br>- - GooglePlayStore<br>- - GoogleServicesFramework<br>-
- GoogleContactsSyncAdapter<br>- - GoogleCalendarSyncAdapter<br>- - GmsCore<br>-
-> GoogleMessages<br>- - GoogleMessages<br>- -> GoogleDialer<br>- - GoogleDialer<br>-
-> GoogleContacts<br>- - GoogleContacts<br>- -> CarrierServices<br>- - CarrierServices<br>-
-> GoogleClock<br>- - GoogleClock<br>- -> GoogleCalculator<br>- - GoogleCalculator<br>-
-> Drive<br>- - Drive<br>- -> GooglePhotos<br>- - GooglePhotos<br>- -> GoogleCalendar<br>-
- GoogleCalendar<br>- -> GoogleRecorder<br>- - GoogleRecorder<br>- -> GoogleChrome<br>-
- GoogleChrome<br>- - WebViewGoogle<br>- - TrichromeLibrary<br>- -> Gmail<br>-
- Gmail<br>- -> YouTube<br>- - YouTube<br>- -> YouTubeMusic<br>- - YouTubeMusic
title: 20240207 (Dreamer-Arcana.config)
- question:
- content:
- ans: Download <a style="color:blue" target="_blank" href="https://sourceforge.net/projects/nikgapps/files/Elite-Releases/UMR85N/NikGapps-U/30-Jan-2024/NikGapps-Dreamer-Arcana-arm64-14-20240130-signed.zip/download">NikGapps-Dreamer-Arcana-arm64-14-20240130-signed.zip
(451.42 MB)</a>
- ans: What's included?<br>- -> Core<br>- - GooglePlayStore<br>- - GoogleServicesFramework<br>-
- GoogleContactsSyncAdapter<br>- - GoogleCalendarSyncAdapter<br>- - GmsCore<br>-
-> GoogleMessages<br>- - GoogleMessages<br>- -> GoogleDialer<br>- - GoogleDialer<br>-
-> GoogleContacts<br>- - GoogleContacts<br>- -> CarrierServices<br>- - CarrierServices<br>-
-> GoogleClock<br>- - GoogleClock<br>- -> GoogleCalculator<br>- - GoogleCalculator<br>-
-> Drive<br>- - Drive<br>- -> GooglePhotos<br>- - GooglePhotos<br>- -> GoogleCalendar<br>-
- GoogleCalendar<br>- -> GoogleRecorder<br>- - GoogleRecorder<br>- -> GoogleChrome<br>-
- GoogleChrome<br>- - WebViewGoogle<br>- - TrichromeLibrary<br>- -> Gmail<br>-
- Gmail<br>- -> YouTube<br>- - YouTube<br>- -> YouTubeMusic<br>- - YouTubeMusic
title: 20240130 (Dreamer-Arcana.config)
id: Dreamer-Arcana_Android14
title: Android 14
Gwolf2u:
- content:
- question:
- content:
- ans: Download <a style="color:blue" target="_blank" href="https://sourceforge.net/projects/nikgapps/files/Elite-Releases/Gwolf2u/NikGapps-T/10-Oct-2023/NikGapps-Gwolf2u-arm64-13-20231010-signed.zip/download">NikGapps-Gwolf2u-arm64-13-20231010-signed.zip
(230.38 MB)</a>
- ans: What's included?<br>- -> Core<br>- - ExtraFiles<br>- - GooglePlayStore<br>-
- GoogleServicesFramework<br>- - GoogleContactsSyncAdapter<br>- - GoogleCalendarSyncAdapter<br>-
- GmsCore<br>- -> SetupWizard<br>- - SetupWizard<br>- - GoogleRestore<br>-
- GoogleOneTimeInitializer<br>- -> MarkupGoogle<br>- -> GoogleTTS<br>- ->
GoogleSearch<br>- - Velvet<br>- - Assistant<br>- -> GoogleSounds<br>- ->
DeviceSetup<br>- -> AndroidAuto
title: 20231010 (Gwolf2u.config)
- question:
- content:
- ans: Download <a style="color:blue" target="_blank" href="https://sourceforge.net/projects/nikgapps/files/Elite-Releases/Gwolf2u/NikGapps-T/07-Oct-2023/NikGapps-Gwolf2u-arm64-13-20231007-signed.zip/download">NikGapps-Gwolf2u-arm64-13-20231007-signed.zip
(230.13 MB)</a>
- ans: What's included?<br>- -> Core<br>- - ExtraFiles<br>- - GooglePlayStore<br>-
- GoogleServicesFramework<br>- - GoogleContactsSyncAdapter<br>- - GoogleCalendarSyncAdapter<br>-
- GmsCore<br>- -> SetupWizard<br>- - SetupWizard<br>- - GoogleRestore<br>-
- GoogleOneTimeInitializer<br>- -> MarkupGoogle<br>- -> GoogleTTS<br>- ->
GoogleSearch<br>- - Velvet<br>- - Assistant<br>- -> GoogleSounds<br>- ->
DeviceSetup<br>- -> AndroidAuto
title: 20231007 (Gwolf2u.config)
- question:
- content:
- ans: Download <a style="color:blue" target="_blank" href="https://sourceforge.net/projects/nikgapps/files/Elite-Releases/Gwolf2u/NikGapps-T/05-Aug-2023/NikGapps-Gwolf2u-arm64-13-20230805-signed.zip/download">NikGapps-Gwolf2u-arm64-13-20230805-signed.zip</a>
- ans: What's included?<br>- -> Core<br>- - ExtraFiles<br>- - GooglePlayStore<br>-
- GoogleServicesFramework<br>- - GoogleContactsSyncAdapter<br>- - GoogleCalendarSyncAdapter<br>-
- GmsCore<br>- -> SetupWizard<br>- - SetupWizard<br>- - GoogleRestore<br>-
- GoogleOneTimeInitializer<br>- -> MarkupGoogle<br>- -> GoogleTTS<br>- ->
GoogleSearch<br>- - Velvet<br>- - Assistant<br>- -> GoogleSounds<br>- ->
DeviceSetup<br>- -> AndroidAuto
title: 20230805 (Gwolf2u.config)
- question:
- content:
- ans: Download <a style="color:blue" href="https://sourceforge.net/projects/nikgapps/files/Elite-Releases/Gwolf2u/NikGapps-T/02-Aug-2023/NikGapps-Gwolf2u-arm64-13-20230802-signed.zip/download">NikGapps-Gwolf2u-arm64-13-20230802-signed.zip</a>
- ans: What's included?<br>- -> Core<br>- - ExtraFiles<br>- - GooglePlayStore<br>-
- GoogleServicesFramework<br>- - GoogleContactsSyncAdapter<br>- - GoogleCalendarSyncAdapter<br>-
- GmsCore<br>- -> SetupWizard<br>- - SetupWizard<br>- - GoogleRestore<br>-
- GoogleOneTimeInitializer<br>- -> MarkupGoogle<br>- -> GoogleTTS<br>- ->
GoogleSearch<br>- - Velvet<br>- - Assistant<br>- -> GoogleSounds<br>- ->
DeviceSetup<br>- -> AndroidAuto
title: 20230802 (Gwolf2u.config)
id: Gwolf2u_Android13
title: Android 13
Juloboy:
- content:
- question:
- content:
- ans: Download <a style="color:blue" target="_blank" href="https://sourceforge.net/projects/nikgapps/files/Elite-Releases/Juloboy/NikGapps-T/19-Apr-2024/NikGapps-Juloboy-arm64-13-20240419-signed.zip/download">NikGapps-Juloboy-arm64-13-20240419-signed.zip
(625.99 MB)</a>
- ans: What's included?<br>- -> Core<br>- - ExtraFiles<br>- - GooglePlayStore<br>-
- GoogleServicesFramework<br>- - GoogleContactsSyncAdapter<br>- - GoogleCalendarSyncAdapter<br>-
- GmsCore<br>- -> DigitalWellbeing<br>- - DigitalWellbeing<br>- -> GoogleMessages<br>-
- GoogleMessages<br>- -> GoogleContacts<br>- - GoogleContacts<br>- -> CarrierServices<br>-
- CarrierServices<br>- -> GoogleClock<br>- - GoogleClock<br>- -> GoogleCalculator<br>-
- GoogleCalculator<br>- -> Drive<br>- - Drive<br>- -> GoogleMaps<br>- -
GoogleMaps<br>- -> GoogleLocationHistory<br>- - GoogleLocationHistory<br>-
-> GooglePhotos<br>- - GooglePhotos<br>- -> DeviceHealthServices<br>- -
DeviceHealthServices<br>- -> GBoard<br>- - GBoard<br>- -> GoogleCalendar<br>-
- GoogleCalendar<br>- -> GoogleKeep<br>- - GoogleKeep<br>- -> PlayGames<br>-
- PlayGames<br>- -> GoogleRecorder<br>- - GoogleRecorder<br>- -> GoogleFiles<br>-
- StorageManager<br>- - DocumentsUIGoogle<br>- -> MarkupGoogle<br>- - MarkupGoogle<br>-
-> GoogleTTS<br>- - GoogleTTS<br>- -> GoogleSearch<br>- - Velvet<br>- -
Assistant<br>- -> GoogleSounds<br>- - GoogleSounds<br>- -> GoogleChrome<br>-
- GoogleChrome<br>- - WebViewGoogle<br>- - TrichromeLibrary<br>- -> PixelSetupWizard<br>-
- SetupWizard<br>- - GoogleRestore<br>- - GoogleOneTimeInitializer<br>-
- PixelSetupWizard
title: 20240419 (Juloboy.config)
- question:
- content:
- ans: Download <a style="color:blue" target="_blank" href="https://sourceforge.net/projects/nikgapps/files/Elite-Releases/Juloboy/NikGapps-T/07-Mar-2024/NikGapps-Juloboy-arm64-13-20240307-signed.zip/download">NikGapps-Juloboy-arm64-13-20240307-signed.zip
(625.93 MB)</a>
- ans: What's included?<br>- -> Core<br>- - ExtraFiles<br>- - GooglePlayStore<br>-
- GoogleServicesFramework<br>- - GoogleContactsSyncAdapter<br>- - GoogleCalendarSyncAdapter<br>-
- GmsCore<br>- -> DigitalWellbeing<br>- - DigitalWellbeing<br>- -> GoogleMessages<br>-
- GoogleMessages<br>- -> GoogleContacts<br>- - GoogleContacts<br>- -> CarrierServices<br>-
- CarrierServices<br>- -> GoogleClock<br>- - GoogleClock<br>- -> GoogleCalculator<br>-
- GoogleCalculator<br>- -> Drive<br>- - Drive<br>- -> GoogleMaps<br>- -
GoogleMaps<br>- -> GoogleLocationHistory<br>- - GoogleLocationHistory<br>-
-> GooglePhotos<br>- - GooglePhotos<br>- -> DeviceHealthServices<br>- -
DeviceHealthServices<br>- -> GBoard<br>- - GBoard<br>- -> GoogleCalendar<br>-
- GoogleCalendar<br>- -> GoogleKeep<br>- - GoogleKeep<br>- -> PlayGames<br>-
- PlayGames<br>- -> GoogleRecorder<br>- - GoogleRecorder<br>- -> GoogleFiles<br>-
- StorageManager<br>- - DocumentsUIGoogle<br>- -> MarkupGoogle<br>- - MarkupGoogle<br>-
-> GoogleTTS<br>- - GoogleTTS<br>- -> GoogleSearch<br>- - Velvet<br>- -
Assistant<br>- -> GoogleSounds<br>- - GoogleSounds<br>- -> GoogleChrome<br>-
- GoogleChrome<br>- - WebViewGoogle<br>- - TrichromeLibrary<br>- -> PixelSetupWizard<br>-
- SetupWizard<br>- - GoogleRestore<br>- - GoogleOneTimeInitializer<br>-
- PixelSetupWizard
title: 20240307 (Juloboy.config)
- question:
- content:
- ans: Download <a style="color:blue" target="_blank" href="https://sourceforge.net/projects/nikgapps/files/Elite-Releases/Juloboy/NikGapps-T/12-Feb-2024/NikGapps-Juloboy-arm64-13-20240212-signed.zip/download">NikGapps-Juloboy-arm64-13-20240212-signed.zip
(625.18 MB)</a>
- ans: What's included?<br>- -> Core<br>- - ExtraFiles<br>- - GooglePlayStore<br>-
- GoogleServicesFramework<br>- - GoogleContactsSyncAdapter<br>- - GoogleCalendarSyncAdapter<br>-
- GmsCore<br>- -> DigitalWellbeing<br>- - DigitalWellbeing<br>- -> GoogleMessages<br>-
- GoogleMessages<br>- -> GoogleContacts<br>- - GoogleContacts<br>- -> CarrierServices<br>-
- CarrierServices<br>- -> GoogleClock<br>- - GoogleClock<br>- -> GoogleCalculator<br>-
- GoogleCalculator<br>- -> Drive<br>- - Drive<br>- -> GoogleMaps<br>- -
GoogleMaps<br>- -> GoogleLocationHistory<br>- - GoogleLocationHistory<br>-
-> GooglePhotos<br>- - GooglePhotos<br>- -> DeviceHealthServices<br>- -
DeviceHealthServices<br>- -> GBoard<br>- - GBoard<br>- -> GoogleCalendar<br>-
- GoogleCalendar<br>- -> GoogleKeep<br>- - GoogleKeep<br>- -> PlayGames<br>-
- PlayGames<br>- -> GoogleRecorder<br>- - GoogleRecorder<br>- -> GoogleFiles<br>-
- StorageManager<br>- - DocumentsUIGoogle<br>- -> MarkupGoogle<br>- - MarkupGoogle<br>-
-> GoogleTTS<br>- - GoogleTTS<br>- -> GoogleSearch<br>- - Velvet<br>- -
Assistant<br>- -> GoogleSounds<br>- - GoogleSounds<br>- -> GoogleChrome<br>-
- GoogleChrome<br>- - WebViewGoogle<br>- - TrichromeLibrary<br>- -> PixelSetupWizard<br>-
- SetupWizard<br>- - GoogleRestore<br>- - GoogleOneTimeInitializer<br>-
- PixelSetupWizard
title: 20240212 (Juloboy.config)
- question:
- content:
- ans: Download <a style="color:blue" target="_blank" href="https://sourceforge.net/projects/nikgapps/files/Elite-Releases/Juloboy/NikGapps-T/07-Nov-2023/NikGapps-Juloboy-arm64-13-20231107-signed.zip/download">NikGapps-Juloboy-arm64-13-20231107-signed.zip
(663.37 MB)</a>
- ans: What's included?<br>- -> Core<br>- - ExtraFiles<br>- - GooglePlayStore<br>-
- GoogleServicesFramework<br>- - GoogleContactsSyncAdapter<br>- - GoogleCalendarSyncAdapter<br>-
- GmsCore<br>- -> DigitalWellbeing<br>- -> GoogleMessages<br>- -> GoogleContacts<br>-
-> CarrierServices<br>- -> GoogleClock<br>- -> GoogleCalculator<br>- ->
Drive<br>- -> GoogleMaps<br>- -> GoogleLocationHistory<br>- -> GooglePhotos<br>-
-> DeviceHealthServices<br>- -> GBoard<br>- -> GoogleCalendar<br>- -> GoogleKeep<br>-
-> PlayGames<br>- -> PixelLauncher<br>- - DevicePersonalizationServices<br>-
- SettingsServices<br>- - PrivateComputeServices<br>- -> GoogleRecorder<br>-
-> GoogleFiles<br>- - StorageManager<br>- - DocumentsUIGoogle<br>- -> MarkupGoogle<br>-
-> GoogleTTS<br>- -> GoogleSearch<br>- - Velvet<br>- - Assistant<br>- ->
GoogleSounds<br>- -> GoogleChrome<br>- - GoogleChrome<br>- - WebViewGoogle<br>-
- TrichromeLibrary<br>- -> PixelSetupWizard<br>- - SetupWizard<br>- - GoogleRestore<br>-
- GoogleOneTimeInitializer<br>- - PixelSetupWizard
title: 20231107 (Juloboy.config)
- question:
- content:
- ans: Download <a style="color:blue" target="_blank" href="https://sourceforge.net/projects/nikgapps/files/Elite-Releases/Juloboy/NikGapps-T/10-Oct-2023/NikGapps-Juloboy-arm64-13-20231010-signed.zip/download">NikGapps-Juloboy-arm64-13-20231010-signed.zip
(663.31 MB)</a>
- ans: What's included?<br>- -> Core<br>- - ExtraFiles<br>- - GooglePlayStore<br>-
- GoogleServicesFramework<br>- - GoogleContactsSyncAdapter<br>- - GoogleCalendarSyncAdapter<br>-
- GmsCore<br>- -> DigitalWellbeing<br>- -> GoogleMessages<br>- -> GoogleContacts<br>-
-> CarrierServices<br>- -> GoogleClock<br>- -> GoogleCalculator<br>- ->
Drive<br>- -> GoogleMaps<br>- -> GoogleLocationHistory<br>- -> GooglePhotos<br>-
-> DeviceHealthServices<br>- -> GBoard<br>- -> GoogleCalendar<br>- -> GoogleKeep<br>-
-> PlayGames<br>- -> PixelLauncher<br>- - DevicePersonalizationServices<br>-
- SettingsServices<br>- - PrivateComputeServices<br>- -> GoogleRecorder<br>-
-> GoogleFiles<br>- - StorageManager<br>- - DocumentsUIGoogle<br>- -> MarkupGoogle<br>-
-> GoogleTTS<br>- -> GoogleSearch<br>- - Velvet<br>- - Assistant<br>- ->
GoogleSounds<br>- -> GoogleChrome<br>- - GoogleChrome<br>- - WebViewGoogle<br>-
- TrichromeLibrary<br>- -> PixelSetupWizard<br>- - SetupWizard<br>- - GoogleRestore<br>-
- GoogleOneTimeInitializer<br>- - PixelSetupWizard
title: 20231010 (Juloboy.config)
id: Juloboy_Android13
title: Android 13
- content:
- question:
- content:
- ans: Download <a style="color:blue" target="_blank" href="https://sourceforge.net/projects/nikgapps/files/Elite-Releases/Juloboy/NikGapps-U/19-Apr-2024/NikGapps-Juloboy-arm64-14-20240419-signed.zip/download">NikGapps-Juloboy-arm64-14-20240419-signed.zip
(681.24 MB)</a>
- ans: What's included?<br>- -> Core<br>- - ExtraFiles<br>- - GooglePlayStore<br>-
- GoogleServicesFramework<br>- - GoogleContactsSyncAdapter<br>- - GoogleCalendarSyncAdapter<br>-
- GmsCore<br>- -> DigitalWellbeing<br>- - DigitalWellbeing<br>- -> GoogleMessages<br>-
- GoogleMessages<br>- -> GoogleContacts<br>- - GoogleContacts<br>- -> CarrierServices<br>-
- CarrierServices<br>- -> GoogleClock<br>- - GoogleClock<br>- -> GoogleCalculator<br>-
- GoogleCalculator<br>- -> Drive<br>- - Drive<br>- -> GoogleMaps<br>- -
GoogleMaps<br>- -> GoogleLocationHistory<br>- - GoogleLocationHistory<br>-
-> GooglePhotos<br>- - GooglePhotos<br>- -> DeviceHealthServices<br>- -
DeviceHealthServices<br>- -> GBoard<br>- - GBoard<br>- -> GoogleCalendar<br>-
- GoogleCalendar<br>- -> GoogleKeep<br>- - GoogleKeep<br>- -> PlayGames<br>-
- PlayGames<br>- -> PixelSpecifics<br>- - DevicePersonalizationServices<br>-
- SettingsServices<br>- - PrivateComputeServices<br>- -> GoogleRecorder<br>-
- GoogleRecorder<br>- -> GoogleFiles<br>- - StorageManager<br>- - DocumentsUIGoogle<br>-
-> MarkupGoogle<br>- - MarkupGoogle<br>- -> GoogleTTS<br>- - GoogleTTS<br>-
-> GoogleSearch<br>- - Velvet<br>- - Assistant<br>- -> GoogleSounds<br>-
- GoogleSounds<br>- -> GoogleChrome<br>- - GoogleChrome<br>- - WebViewGoogle<br>-
- TrichromeLibrary<br>- -> PixelSetupWizard<br>- - SetupWizard<br>- - GoogleRestore<br>-
- GoogleOneTimeInitializer<br>- - PixelSetupWizard
title: 20240419 (Juloboy.config)
- question:
- content:
- ans: Download <a style="color:blue" target="_blank" href="https://sourceforge.net/projects/nikgapps/files/Elite-Releases/Juloboy/NikGapps-U/07-Mar-2024/NikGapps-Juloboy-arm64-14-20240307-signed.zip/download">NikGapps-Juloboy-arm64-14-20240307-signed.zip
(670.16 MB)</a>
- ans: What's included?<br>- -> Core<br>- - ExtraFiles<br>- - GooglePlayStore<br>-
- GoogleServicesFramework<br>- - GoogleContactsSyncAdapter<br>- - GoogleCalendarSyncAdapter<br>-
- GmsCore<br>- -> DigitalWellbeing<br>- - DigitalWellbeing<br>- -> GoogleMessages<br>-
- GoogleMessages<br>- -> GoogleContacts<br>- - GoogleContacts<br>- -> CarrierServices<br>-
- CarrierServices<br>- -> GoogleClock<br>- - GoogleClock<br>- -> GoogleCalculator<br>-
- GoogleCalculator<br>- -> Drive<br>- - Drive<br>- -> GoogleMaps<br>- -
GoogleMaps<br>- -> GoogleLocationHistory<br>- - GoogleLocationHistory<br>-
-> GooglePhotos<br>- - GooglePhotos<br>- -> DeviceHealthServices<br>- -
DeviceHealthServices<br>- -> GBoard<br>- - GBoard<br>- -> GoogleCalendar<br>-
- GoogleCalendar<br>- -> GoogleKeep<br>- - GoogleKeep<br>- -> PlayGames<br>-
- PlayGames<br>- -> PixelSpecifics<br>- - DevicePersonalizationServices<br>-
- SettingsServices<br>- - PrivateComputeServices<br>- -> GoogleRecorder<br>-
- GoogleRecorder<br>- -> GoogleFiles<br>- - StorageManager<br>- - DocumentsUIGoogle<br>-
-> MarkupGoogle<br>- - MarkupGoogle<br>- -> GoogleTTS<br>- - GoogleTTS<br>-
-> GoogleSearch<br>- - Velvet<br>- - Assistant<br>- -> GoogleSounds<br>-
- GoogleSounds<br>- -> GoogleChrome<br>- - GoogleChrome<br>- - WebViewGoogle<br>-
- TrichromeLibrary<br>- -> PixelSetupWizard<br>- - SetupWizard<br>- - GoogleRestore<br>-
- GoogleOneTimeInitializer<br>- - PixelSetupWizard
title: 20240307 (Juloboy.config)
- question:
- content:
- ans: Download <a style="color:blue" target="_blank" href="https://sourceforge.net/projects/nikgapps/files/Elite-Releases/Juloboy/NikGapps-U/12-Feb-2024/NikGapps-Juloboy-arm64-14-20240212-signed.zip/download">NikGapps-Juloboy-arm64-14-20240212-signed.zip
(670.04 MB)</a>
- ans: What's included?<br>- -> Core<br>- - ExtraFiles<br>- - GooglePlayStore<br>-
- GoogleServicesFramework<br>- - GoogleContactsSyncAdapter<br>- - GoogleCalendarSyncAdapter<br>-
- GmsCore<br>- -> DigitalWellbeing<br>- - DigitalWellbeing<br>- -> GoogleMessages<br>-
- GoogleMessages<br>- -> GoogleContacts<br>- - GoogleContacts<br>- -> CarrierServices<br>-
- CarrierServices<br>- -> GoogleClock<br>- - GoogleClock<br>- -> GoogleCalculator<br>-
- GoogleCalculator<br>- -> Drive<br>- - Drive<br>- -> GoogleMaps<br>- -
GoogleMaps<br>- -> GoogleLocationHistory<br>- - GoogleLocationHistory<br>-
-> GooglePhotos<br>- - GooglePhotos<br>- -> DeviceHealthServices<br>- -
DeviceHealthServices<br>- -> GBoard<br>- - GBoard<br>- -> GoogleCalendar<br>-
- GoogleCalendar<br>- -> GoogleKeep<br>- - GoogleKeep<br>- -> PlayGames<br>-
- PlayGames<br>- -> PixelSpecifics<br>- - DevicePersonalizationServices<br>-
- SettingsServices<br>- - PrivateComputeServices<br>- -> GoogleRecorder<br>-
- GoogleRecorder<br>- -> GoogleFiles<br>- - StorageManager<br>- - DocumentsUIGoogle<br>-
-> MarkupGoogle<br>- - MarkupGoogle<br>- -> GoogleTTS<br>- - GoogleTTS<br>-
-> GoogleSearch<br>- - Velvet<br>- - Assistant<br>- -> GoogleSounds<br>-
- GoogleSounds<br>- -> GoogleChrome<br>- - GoogleChrome<br>- - WebViewGoogle<br>-
- TrichromeLibrary<br>- -> PixelSetupWizard<br>- - SetupWizard<br>- - GoogleRestore<br>-
- GoogleOneTimeInitializer<br>- - PixelSetupWizard
title: 20240212 (Juloboy.config)
- question:
- content:
- ans: Download <a style="color:blue" target="_blank" href="https://sourceforge.net/projects/nikgapps/files/Elite-Releases/Juloboy/NikGapps-U/07-Feb-2024/NikGapps-Juloboy-arm64-14-20240207-signed.zip/download">NikGapps-Juloboy-arm64-14-20240207-signed.zip
(670.04 MB)</a>
- ans: What's included?<br>- -> Core<br>- - ExtraFiles<br>- - GooglePlayStore<br>-
- GoogleServicesFramework<br>- - GoogleContactsSyncAdapter<br>- - GoogleCalendarSyncAdapter<br>-
- GmsCore<br>- -> DigitalWellbeing<br>- - DigitalWellbeing<br>- -> GoogleMessages<br>-
- GoogleMessages<br>- -> GoogleContacts<br>- - GoogleContacts<br>- -> CarrierServices<br>-
- CarrierServices<br>- -> GoogleClock<br>- - GoogleClock<br>- -> GoogleCalculator<br>-
- GoogleCalculator<br>- -> Drive<br>- - Drive<br>- -> GoogleMaps<br>- -
GoogleMaps<br>- -> GoogleLocationHistory<br>- - GoogleLocationHistory<br>-
-> GooglePhotos<br>- - GooglePhotos<br>- -> DeviceHealthServices<br>- -
DeviceHealthServices<br>- -> GBoard<br>- - GBoard<br>- -> GoogleCalendar<br>-
- GoogleCalendar<br>- -> GoogleKeep<br>- - GoogleKeep<br>- -> PlayGames<br>-
- PlayGames<br>- -> PixelSpecifics<br>- - DevicePersonalizationServices<br>-
- SettingsServices<br>- - PrivateComputeServices<br>- -> GoogleRecorder<br>-
- GoogleRecorder<br>- -> GoogleFiles<br>- - StorageManager<br>- - DocumentsUIGoogle<br>-
-> MarkupGoogle<br>- - MarkupGoogle<br>- -> GoogleTTS<br>- - GoogleTTS<br>-
-> GoogleSearch<br>- - Velvet<br>- - Assistant<br>- -> GoogleSounds<br>-
- GoogleSounds<br>- -> GoogleChrome<br>- - GoogleChrome<br>- - WebViewGoogle<br>-
- TrichromeLibrary<br>- -> PixelSetupWizard<br>- - SetupWizard<br>- - GoogleRestore<br>-
- GoogleOneTimeInitializer<br>- - PixelSetupWizard
title: 20240207 (Juloboy.config)
- question:
- content:
- ans: Download <a style="color:blue" target="_blank" href="https://sourceforge.net/projects/nikgapps/files/Elite-Releases/Juloboy/NikGapps-U/29-Jan-2024/NikGapps-Juloboy-arm64-14-20240129-signed.zip/download">NikGapps-Juloboy-arm64-14-20240129-signed.zip
(670.02 MB)</a>
- ans: What's included?<br>- -> Core<br>- - ExtraFiles<br>- - GooglePlayStore<br>-
- GoogleServicesFramework<br>- - GoogleContactsSyncAdapter<br>- - GoogleCalendarSyncAdapter<br>-
- GmsCore<br>- -> DigitalWellbeing<br>- - DigitalWellbeing<br>- -> GoogleMessages<br>-
- GoogleMessages<br>- -> GoogleContacts<br>- - GoogleContacts<br>- -> CarrierServices<br>-
- CarrierServices<br>- -> GoogleClock<br>- - GoogleClock<br>- -> GoogleCalculator<br>-
- GoogleCalculator<br>- -> Drive<br>- - Drive<br>- -> GoogleMaps<br>- -
GoogleMaps<br>- -> GoogleLocationHistory<br>- - GoogleLocationHistory<br>-
-> GooglePhotos<br>- - GooglePhotos<br>- -> DeviceHealthServices<br>- -
DeviceHealthServices<br>- -> GBoard<br>- - GBoard<br>- -> GoogleCalendar<br>-
- GoogleCalendar<br>- -> GoogleKeep<br>- - GoogleKeep<br>- -> PlayGames<br>-
- PlayGames<br>- -> PixelSpecifics<br>- - DevicePersonalizationServices<br>-
- SettingsServices<br>- - PrivateComputeServices<br>- -> GoogleRecorder<br>-
- GoogleRecorder<br>- -> GoogleFiles<br>- - StorageManager<br>- - DocumentsUIGoogle<br>-
-> MarkupGoogle<br>- - MarkupGoogle<br>- -> GoogleTTS<br>- - GoogleTTS<br>-
-> GoogleSearch<br>- - Velvet<br>- - Assistant<br>- -> GoogleSounds<br>-
- GoogleSounds<br>- -> GoogleChrome<br>- - GoogleChrome<br>- - WebViewGoogle<br>-
- TrichromeLibrary<br>- -> PixelSetupWizard<br>- - SetupWizard<br>- - GoogleRestore<br>-
- GoogleOneTimeInitializer<br>- - PixelSetupWizard
title: 20240129 (Juloboy.config)
id: Juloboy_Android14
title: Android 14
Pfuenzle:
- content:
- question:
- content:
- ans: Download <a style="color:blue" target="_blank" href="https://sourceforge.net/projects/nikgapps/files/Elite-Releases/pfuenzle/NikGapps-T/19-Apr-2024/NikGapps-pfuenzle-arm64-13-20240419-signed.zip/download">NikGapps-pfuenzle-arm64-13-20240419-signed.zip
(289.57 MB)</a>
- ans: What's included?<br>- -> Drive<br>- - Drive<br>- -> GoogleMaps<br>- -
GoogleMaps<br>- -> GoogleLocationHistory<br>- - GoogleLocationHistory<br>-
-> DeviceHealthServices<br>- - DeviceHealthServices<br>- -> PlayGames<br>-
- PlayGames<br>- -> MarkupGoogle<br>- - MarkupGoogle<br>- -> GoogleTTS<br>-
- GoogleTTS<br>- -> GoogleSounds<br>- - GoogleSounds<br>- -> Gmail<br>-
- Gmail<br>- -> AndroidDevicePolicy<br>- - AndroidDevicePolicy<br>- -> GoogleDuo<br>-
- GoogleDuo<br>- -> GoogleDocs<br>- - GoogleDocs<br>- -> GoogleSlides<br>-
- GoogleSlides<br>- -> GoogleSheets<br>- - GoogleSheets<br>- -> Books<br>-
- Books<br>- -> GoogleTalkback<br>- - GoogleTalkback
title: 20240419 (pfuenzle.config)
- question:
- content:
- ans: Download <a style="color:blue" target="_blank" href="https://sourceforge.net/projects/nikgapps/files/Elite-Releases/pfuenzle/NikGapps-T/19-Apr-2024/NikGapps-pfuenzle-full-arm64-13-20240419-signed.zip/download">NikGapps-pfuenzle-full-arm64-13-20240419-signed.zip
(938.96 MB)</a>
- ans: What's included?<br>- -> Core<br>- - ExtraFiles<br>- - GooglePlayStore<br>-
- GoogleServicesFramework<br>- - GoogleContactsSyncAdapter<br>- - GoogleCalendarSyncAdapter<br>-
- GmsCore<br>- -> DigitalWellbeing<br>- - DigitalWellbeing<br>- -> GoogleMessages<br>-
- GoogleMessages<br>- -> GoogleDialer<br>- - GoogleDialer<br>- -> GoogleContacts<br>-
- GoogleContacts<br>- -> CarrierServices<br>- - CarrierServices<br>- ->
GoogleClock<br>- - GoogleClock<br>- -> GoogleCalculator<br>- - GoogleCalculator<br>-
-> Drive<br>- - Drive<br>- -> GoogleMaps<br>- - GoogleMaps<br>- -> GoogleLocationHistory<br>-
- GoogleLocationHistory<br>- -> GooglePhotos<br>- - GooglePhotos<br>- ->
DeviceHealthServices<br>- - DeviceHealthServices<br>- -> GBoard<br>- - GBoard<br>-
-> GoogleCalendar<br>- - GoogleCalendar<br>- -> GoogleKeep<br>- - GoogleKeep<br>-
-> PlayGames<br>- - PlayGames<br>- -> GoogleRecorder<br>- - GoogleRecorder<br>-
-> GoogleFiles<br>- - GoogleFiles<br>- - StorageManager<br>- - DocumentsUIGoogle<br>-
-> MarkupGoogle<br>- - MarkupGoogle<br>- -> GoogleTTS<br>- - GoogleTTS<br>-
-> GoogleSearch<br>- - Velvet<br>- - Assistant<br>- -> GoogleSounds<br>-
- GoogleSounds<br>- -> GoogleChrome<br>- - GoogleChrome<br>- - WebViewGoogle<br>-
- TrichromeLibrary<br>- -> Gmail<br>- - Gmail<br>- -> AndroidAuto<br>- -
AndroidAuto<br>- -> GoogleFeedback<br>- - GoogleFeedback<br>- -> GooglePartnerSetup<br>-
- GooglePartnerSetup<br>- -> AndroidDevicePolicy<br>- - AndroidDevicePolicy<br>-
-> GoogleDuo<br>- - GoogleDuo<br>- -> GoogleDocs<br>- - GoogleDocs<br>-
-> GoogleSlides<br>- - GoogleSlides<br>- -> GoogleSheets<br>- - GoogleSheets<br>-
-> Books<br>- - Books<br>- -> GoogleTalkback<br>- - GoogleTalkback<br>-
-> PixelLiveWallpapers<br>- - PixelLiveWallpaper<br>- - PixelWallpapers2022
title: 20240419 (pfuenzle-full.config)
- question:
- content:
- ans: Download <a style="color:blue" target="_blank" href="https://sourceforge.net/projects/nikgapps/files/Elite-Releases/pfuenzle/NikGapps-T/07-Mar-2024/NikGapps-pfuenzle-arm64-13-20240307-signed.zip/download">NikGapps-pfuenzle-arm64-13-20240307-signed.zip
(289.53 MB)</a>
- ans: What's included?<br>- -> Drive<br>- - Drive<br>- -> GoogleMaps<br>- -
GoogleMaps<br>- -> GoogleLocationHistory<br>- - GoogleLocationHistory<br>-
-> DeviceHealthServices<br>- - DeviceHealthServices<br>- -> PlayGames<br>-
- PlayGames<br>- -> MarkupGoogle<br>- - MarkupGoogle<br>- -> GoogleTTS<br>-
- GoogleTTS<br>- -> GoogleSounds<br>- - GoogleSounds<br>- -> Gmail<br>-
- Gmail<br>- -> AndroidDevicePolicy<br>- - AndroidDevicePolicy<br>- -> GoogleDuo<br>-
- GoogleDuo<br>- -> GoogleDocs<br>- - GoogleDocs<br>- -> GoogleSlides<br>-
- GoogleSlides<br>- -> GoogleSheets<br>- - GoogleSheets<br>- -> Books<br>-
- Books<br>- -> GoogleTalkback<br>- - GoogleTalkback
title: 20240307 (pfuenzle.config)
- question:
- content:
- ans: Download <a style="color:blue" target="_blank" href="https://sourceforge.net/projects/nikgapps/files/Elite-Releases/pfuenzle/NikGapps-T/07-Mar-2024/NikGapps-pfuenzle-full-arm64-13-20240307-signed.zip/download">NikGapps-pfuenzle-full-arm64-13-20240307-signed.zip
(938.88 MB)</a>
- ans: What's included?<br>- -> Core<br>- - ExtraFiles<br>- - GooglePlayStore<br>-
- GoogleServicesFramework<br>- - GoogleContactsSyncAdapter<br>- - GoogleCalendarSyncAdapter<br>-
- GmsCore<br>- -> DigitalWellbeing<br>- - DigitalWellbeing<br>- -> GoogleMessages<br>-
- GoogleMessages<br>- -> GoogleDialer<br>- - GoogleDialer<br>- -> GoogleContacts<br>-
- GoogleContacts<br>- -> CarrierServices<br>- - CarrierServices<br>- ->
GoogleClock<br>- - GoogleClock<br>- -> GoogleCalculator<br>- - GoogleCalculator<br>-
-> Drive<br>- - Drive<br>- -> GoogleMaps<br>- - GoogleMaps<br>- -> GoogleLocationHistory<br>-
- GoogleLocationHistory<br>- -> GooglePhotos<br>- - GooglePhotos<br>- ->
DeviceHealthServices<br>- - DeviceHealthServices<br>- -> GBoard<br>- - GBoard<br>-
-> GoogleCalendar<br>- - GoogleCalendar<br>- -> GoogleKeep<br>- - GoogleKeep<br>-
-> PlayGames<br>- - PlayGames<br>- -> GoogleRecorder<br>- - GoogleRecorder<br>-
-> GoogleFiles<br>- - GoogleFiles<br>- - StorageManager<br>- - DocumentsUIGoogle<br>-
-> MarkupGoogle<br>- - MarkupGoogle<br>- -> GoogleTTS<br>- - GoogleTTS<br>-
-> GoogleSearch<br>- - Velvet<br>- - Assistant<br>- -> GoogleSounds<br>-
- GoogleSounds<br>- -> GoogleChrome<br>- - GoogleChrome<br>- - WebViewGoogle<br>-
- TrichromeLibrary<br>- -> Gmail<br>- - Gmail<br>- -> AndroidAuto<br>- -
AndroidAuto<br>- -> GoogleFeedback<br>- - GoogleFeedback<br>- -> GooglePartnerSetup<br>-
- GooglePartnerSetup<br>- -> AndroidDevicePolicy<br>- - AndroidDevicePolicy<br>-
-> GoogleDuo<br>- - GoogleDuo<br>- -> GoogleDocs<br>- - GoogleDocs<br>-
-> GoogleSlides<br>- - GoogleSlides<br>- -> GoogleSheets<br>- - GoogleSheets<br>-
-> Books<br>- - Books<br>- -> GoogleTalkback<br>- - GoogleTalkback<br>-
-> PixelLiveWallpapers<br>- - PixelLiveWallpaper<br>- - PixelWallpapers2022
title: 20240307 (pfuenzle-full.config)
- question:
- content:
- ans: Download <a style="color:blue" target="_blank" href="https://sourceforge.net/projects/nikgapps/files/Elite-Releases/pfuenzle/NikGapps-T/12-Feb-2024/NikGapps-pfuenzle-arm64-13-20240212-signed.zip/download">NikGapps-pfuenzle-arm64-13-20240212-signed.zip
(288.86 MB)</a>
- ans: What's included?<br>- -> Drive<br>- - Drive<br>- -> GoogleMaps<br>- -
GoogleMaps<br>- -> GoogleLocationHistory<br>- - GoogleLocationHistory<br>-
-> DeviceHealthServices<br>- - DeviceHealthServices<br>- -> PlayGames<br>-
- PlayGames<br>- -> MarkupGoogle<br>- - MarkupGoogle<br>- -> GoogleTTS<br>-
- GoogleTTS<br>- -> GoogleSounds<br>- - GoogleSounds<br>- -> Gmail<br>-
- Gmail<br>- -> AndroidDevicePolicy<br>- - AndroidDevicePolicy<br>- -> GoogleDuo<br>-
- GoogleDuo<br>- -> GoogleDocs<br>- - GoogleDocs<br>- -> GoogleSlides<br>-
- GoogleSlides<br>- -> GoogleSheets<br>- - GoogleSheets<br>- -> Books<br>-
- Books<br>- -> GoogleTalkback<br>- - GoogleTalkback
title: 20240212 (pfuenzle.config)
id: Pfuenzle_Android13
title: Android 13
- content:
- question:
- content:
- ans: Download <a style="color:blue" target="_blank" href="https://sourceforge.net/projects/nikgapps/files/Elite-Releases/pfuenzle/NikGapps-U/19-Apr-2024/NikGapps-pfuenzle-arm64-14-20240419-signed.zip/download">NikGapps-pfuenzle-arm64-14-20240419-signed.zip
(280.29 MB)</a>
- ans: What's included?<br>- -> Drive<br>- - Drive<br>- -> GoogleMaps<br>- -
GoogleMaps<br>- -> GoogleLocationHistory<br>- - GoogleLocationHistory<br>-
-> DeviceHealthServices<br>- - DeviceHealthServices<br>- -> PlayGames<br>-
- PlayGames<br>- -> MarkupGoogle<br>- - MarkupGoogle<br>- -> GoogleTTS<br>-
- GoogleTTS<br>- -> GoogleSounds<br>- - GoogleSounds<br>- -> Gmail<br>-
- Gmail<br>- -> AndroidDevicePolicy<br>- - AndroidDevicePolicy<br>- -> GoogleDuo<br>-
- GoogleDuo<br>- -> GoogleDocs<br>- - GoogleDocs<br>- -> GoogleSlides<br>-
- GoogleSlides<br>- -> GoogleSheets<br>- - GoogleSheets<br>- -> Books<br>-
- Books<br>- -> GoogleTalkback<br>- - GoogleTalkback
title: 20240419 (pfuenzle.config)
- question:
- content:
- ans: Download <a style="color:blue" target="_blank" href="https://sourceforge.net/projects/nikgapps/files/Elite-Releases/pfuenzle/NikGapps-U/19-Apr-2024/NikGapps-pfuenzle-full-arm64-14-20240419-signed.zip/download">NikGapps-pfuenzle-full-arm64-14-20240419-signed.zip
(845.36 MB)</a>
- ans: What's included?<br>- -> Core<br>- - ExtraFiles<br>- - GooglePlayStore<br>-
- GoogleServicesFramework<br>- - GoogleContactsSyncAdapter<br>- - GoogleCalendarSyncAdapter<br>-
- GmsCore<br>- -> DigitalWellbeing<br>- - DigitalWellbeing<br>- -> GoogleMessages<br>-
- GoogleMessages<br>- -> GoogleDialer<br>- - GoogleDialer<br>- -> GoogleContacts<br>-
- GoogleContacts<br>- -> CarrierServices<br>- - CarrierServices<br>- ->
GoogleClock<br>- - GoogleClock<br>- -> GoogleCalculator<br>- - GoogleCalculator<br>-
-> Drive<br>- - Drive<br>- -> GoogleMaps<br>- - GoogleMaps<br>- -> GoogleLocationHistory<br>-
- GoogleLocationHistory<br>- -> GooglePhotos<br>- - GooglePhotos<br>- ->
DeviceHealthServices<br>- - DeviceHealthServices<br>- -> GBoard<br>- - GBoard<br>-
-> GoogleCalendar<br>- - GoogleCalendar<br>- -> GoogleKeep<br>- - GoogleKeep<br>-
-> PlayGames<br>- - PlayGames<br>- -> GoogleRecorder<br>- - GoogleRecorder<br>-
-> GoogleFiles<br>- - GoogleFiles<br>- - StorageManager<br>- - DocumentsUIGoogle<br>-
-> MarkupGoogle<br>- - MarkupGoogle<br>- -> GoogleTTS<br>- - GoogleTTS<br>-
-> GoogleSearch<br>- - Velvet<br>- - Assistant<br>- -> GoogleSounds<br>-
- GoogleSounds<br>- -> GoogleChrome<br>- - GoogleChrome<br>- - WebViewGoogle<br>-
- TrichromeLibrary<br>- -> Gmail<br>- - Gmail<br>- -> AndroidAuto<br>- -
AndroidAuto<br>- -> GoogleFeedback<br>- - GoogleFeedback<br>- -> GooglePartnerSetup<br>-
- GooglePartnerSetup<br>- -> AndroidDevicePolicy<br>- - AndroidDevicePolicy<br>-
-> GoogleDuo<br>- - GoogleDuo<br>- -> GoogleDocs<br>- - GoogleDocs<br>-
-> GoogleSlides<br>- - GoogleSlides<br>- -> GoogleSheets<br>- - GoogleSheets<br>-
-> Books<br>- - Books<br>- -> GoogleTalkback<br>- - GoogleTalkback
title: 20240419 (pfuenzle-full.config)
- question:
- content:
- ans: Download <a style="color:blue" target="_blank" href="https://sourceforge.net/projects/nikgapps/files/Elite-Releases/pfuenzle/NikGapps-U/07-Mar-2024/NikGapps-pfuenzle-arm64-14-20240307-signed.zip/download">NikGapps-pfuenzle-arm64-14-20240307-signed.zip
(293.44 MB)</a>
- ans: What's included?<br>- -> Drive<br>- - Drive<br>- -> GoogleMaps<br>- -
GoogleMaps<br>- -> GoogleLocationHistory<br>- - GoogleLocationHistory<br>-
-> DeviceHealthServices<br>- - DeviceHealthServices<br>- -> PlayGames<br>-
- PlayGames<br>- -> MarkupGoogle<br>- - MarkupGoogle<br>- -> GoogleTTS<br>-
- GoogleTTS<br>- -> GoogleSounds<br>- - GoogleSounds<br>- -> Gmail<br>-
- Gmail<br>- -> AndroidDevicePolicy<br>- - AndroidDevicePolicy<br>- -> GoogleDuo<br>-
- GoogleDuo<br>- -> GoogleDocs<br>- - GoogleDocs<br>- -> GoogleSlides<br>-
- GoogleSlides<br>- -> GoogleSheets<br>- - GoogleSheets<br>- -> Books<br>-
- Books<br>- -> GoogleTalkback<br>- - GoogleTalkback
title: 20240307 (pfuenzle.config)
- question:
- content:
- ans: Download <a style="color:blue" target="_blank" href="https://sourceforge.net/projects/nikgapps/files/Elite-Releases/pfuenzle/NikGapps-U/07-Mar-2024/NikGapps-pfuenzle-full-arm64-14-20240307-signed.zip/download">NikGapps-pfuenzle-full-arm64-14-20240307-signed.zip
(850.07 MB)</a>
- ans: What's included?<br>- -> Core<br>- - ExtraFiles<br>- - GooglePlayStore<br>-
- GoogleServicesFramework<br>- - GoogleContactsSyncAdapter<br>- - GoogleCalendarSyncAdapter<br>-
- GmsCore<br>- -> DigitalWellbeing<br>- - DigitalWellbeing<br>- -> GoogleMessages<br>-
- GoogleMessages<br>- -> GoogleDialer<br>- - GoogleDialer<br>- -> GoogleContacts<br>-
- GoogleContacts<br>- -> CarrierServices<br>- - CarrierServices<br>- ->
GoogleClock<br>- - GoogleClock<br>- -> GoogleCalculator<br>- - GoogleCalculator<br>-
-> Drive<br>- - Drive<br>- -> GoogleMaps<br>- - GoogleMaps<br>- -> GoogleLocationHistory<br>-
- GoogleLocationHistory<br>- -> GooglePhotos<br>- - GooglePhotos<br>- ->
DeviceHealthServices<br>- - DeviceHealthServices<br>- -> GBoard<br>- - GBoard<br>-
-> GoogleCalendar<br>- - GoogleCalendar<br>- -> GoogleKeep<br>- - GoogleKeep<br>-
-> PlayGames<br>- - PlayGames<br>- -> GoogleRecorder<br>- - GoogleRecorder<br>-
-> GoogleFiles<br>- - GoogleFiles<br>- - StorageManager<br>- - DocumentsUIGoogle<br>-
-> MarkupGoogle<br>- - MarkupGoogle<br>- -> GoogleTTS<br>- - GoogleTTS<br>-
-> GoogleSearch<br>- - Velvet<br>- - Assistant<br>- -> GoogleSounds<br>-
- GoogleSounds<br>- -> GoogleChrome<br>- - GoogleChrome<br>- - WebViewGoogle<br>-
- TrichromeLibrary<br>- -> Gmail<br>- - Gmail<br>- -> AndroidAuto<br>- -
AndroidAuto<br>- -> GoogleFeedback<br>- - GoogleFeedback<br>- -> GooglePartnerSetup<br>-
- GooglePartnerSetup<br>- -> AndroidDevicePolicy<br>- - AndroidDevicePolicy<br>-
-> GoogleDuo<br>- - GoogleDuo<br>- -> GoogleDocs<br>- - GoogleDocs<br>-
-> GoogleSlides<br>- - GoogleSlides<br>- -> GoogleSheets<br>- - GoogleSheets<br>-
-> Books<br>- - Books<br>- -> GoogleTalkback<br>- - GoogleTalkback
title: 20240307 (pfuenzle-full.config)
- question:
- content:
- ans: Download <a style="color:blue" target="_blank" href="https://sourceforge.net/projects/nikgapps/files/Elite-Releases/pfuenzle/NikGapps-U/12-Feb-2024/NikGapps-pfuenzle-arm64-14-20240212-signed.zip/download">NikGapps-pfuenzle-arm64-14-20240212-signed.zip
(293.42 MB)</a>
- ans: What's included?<br>- -> Drive<br>- - Drive<br>- -> GoogleMaps<br>- -
GoogleMaps<br>- -> GoogleLocationHistory<br>- - GoogleLocationHistory<br>-
-> DeviceHealthServices<br>- - DeviceHealthServices<br>- -> PlayGames<br>-
- PlayGames<br>- -> MarkupGoogle<br>- - MarkupGoogle<br>- -> GoogleTTS<br>-
- GoogleTTS<br>- -> GoogleSounds<br>- - GoogleSounds<br>- -> Gmail<br>-
- Gmail<br>- -> AndroidDevicePolicy<br>- - AndroidDevicePolicy<br>- -> GoogleDuo<br>-
- GoogleDuo<br>- -> GoogleDocs<br>- - GoogleDocs<br>- -> GoogleSlides<br>-
- GoogleSlides<br>- -> GoogleSheets<br>- - GoogleSheets<br>- -> Books<br>-
- Books<br>- -> GoogleTalkback<br>- - GoogleTalkback
title: 20240212 (pfuenzle.config)
id: Pfuenzle_Android14
title: Android 14
TeaqariaWTF:
- content:
- question:
- content:
- ans: Download <a style="color:blue" target="_blank" href="https://sourceforge.net/projects/nikgapps/files/Elite-Releases/Mergen/NikGapps-SL/07-Nov-2023/NikGapps-Mergen-arm64-12.1-20231107-signed.zip/download">NikGapps-Mergen-arm64-12.1-20231107-signed.zip
(212.94 MB)</a>
- ans: What's included?<br>- -> Core<br>- - ExtraFiles<br>- - GooglePlayStore<br>-