NikGapps 3.43__py3-none-any.whl → 3.44__py3-none-any.whl
This diff represents the content of publicly available package versions that have been released to one of the supported registries. The information contained in this diff is provided for informational purposes only and reflects changes between package versions as they appear in their respective public registries.
- NikGapps/build/NikGappsManager.py +4 -4
- NikGapps/helper/assets/appsets.json +4 -4
- NikGapps/helper/assets/changelogs.yaml +2 -1
- NikGapps/helper/assets/config_versions.json +7 -7
- NikGapps/helper/assets/packages.json +32 -0
- {NikGapps-3.43.dist-info → NikGapps-3.44.dist-info}/METADATA +1 -1
- {NikGapps-3.43.dist-info → NikGapps-3.44.dist-info}/RECORD +11 -11
- {NikGapps-3.43.dist-info → NikGapps-3.44.dist-info}/LICENSE +0 -0
- {NikGapps-3.43.dist-info → NikGapps-3.44.dist-info}/WHEEL +0 -0
- {NikGapps-3.43.dist-info → NikGapps-3.44.dist-info}/entry_points.txt +0 -0
- {NikGapps-3.43.dist-info → NikGapps-3.44.dist-info}/top_level.txt +0 -0
|
@@ -492,13 +492,13 @@ class NikGappsManager:
|
|
|
492
492
|
# if float(self.android_version) == 13:
|
|
493
493
|
# addon_packages.append("PixelWallpapers")
|
|
494
494
|
pixel_setup_wizard_packages = [
|
|
495
|
-
"
|
|
496
|
-
"
|
|
495
|
+
"SetupWizardPixel",
|
|
496
|
+
"GoogleRestorePixel",
|
|
497
497
|
"PixelSetupWizard",
|
|
498
|
-
"
|
|
498
|
+
"GoogleOneTimeInitializerPixel"
|
|
499
499
|
]
|
|
500
500
|
if float(self.android_version) < 12:
|
|
501
|
-
pixel_setup_wizard_packages.append("
|
|
501
|
+
pixel_setup_wizard_packages.append("AndroidMigratePixelPrebuilt")
|
|
502
502
|
pixel_setup_wizard = self.create_appset_list_from_packages(pixel_setup_wizard_packages, keyword="Pixel")
|
|
503
503
|
addon_set_list = pixel_setup_wizard + self.create_appset_list_from_packages(addon_packages)
|
|
504
504
|
if addon_name:
|
|
@@ -359,16 +359,16 @@
|
|
|
359
359
|
{
|
|
360
360
|
"min_version": 10,
|
|
361
361
|
"packages": [
|
|
362
|
-
"
|
|
363
|
-
"
|
|
364
|
-
"
|
|
362
|
+
"SetupWizardPixel",
|
|
363
|
+
"GoogleRestorePixel",
|
|
364
|
+
"GoogleOneTimeInitializerPixel",
|
|
365
365
|
"PixelSetupWizard"
|
|
366
366
|
]
|
|
367
367
|
},
|
|
368
368
|
{
|
|
369
369
|
"max_version": 12,
|
|
370
370
|
"packages": [
|
|
371
|
-
"
|
|
371
|
+
"AndroidMigratePixelPrebuilt"
|
|
372
372
|
]
|
|
373
373
|
}
|
|
374
374
|
],
|
|
@@ -1,9 +1,10 @@
|
|
|
1
1
|
- date: 4th Nov 2024 (Android 10-15)
|
|
2
2
|
changes:
|
|
3
|
-
- item: Initial Android 15
|
|
3
|
+
- item: Initial Android 15 stable Release
|
|
4
4
|
- item: Added overlays for Google Sounds, Device Setup, Google Wallpaper, Google Files
|
|
5
5
|
- item: Added AICore in PixelSpecifics (Android 15)
|
|
6
6
|
- item: Updated gms overlay to adapt android 15
|
|
7
|
+
- item: Make the PixelSetupWizard independent of SetupWizard appsets for simplicity
|
|
7
8
|
- item: Updated nikgapps.config to v36
|
|
8
9
|
- date: 13th Aug 2024 (Android 10-14)
|
|
9
10
|
changes:
|
|
@@ -23,6 +23,14 @@
|
|
|
23
23
|
"type": "priv-app"
|
|
24
24
|
}
|
|
25
25
|
],
|
|
26
|
+
"AndroidMigratePixelPrebuilt": [
|
|
27
|
+
{
|
|
28
|
+
"package_name": "com.google.android.apps.pixelmigrate",
|
|
29
|
+
"partition": "product",
|
|
30
|
+
"title": "AndroidMigratePrebuilt",
|
|
31
|
+
"type": "priv-app"
|
|
32
|
+
}
|
|
33
|
+
],
|
|
26
34
|
"Assistant": [
|
|
27
35
|
{
|
|
28
36
|
"package_name": "com.google.android.apps.googleassistant",
|
|
@@ -317,6 +325,14 @@
|
|
|
317
325
|
"type": "priv-app"
|
|
318
326
|
}
|
|
319
327
|
],
|
|
328
|
+
"GoogleOneTimeInitializerPixel": [
|
|
329
|
+
{
|
|
330
|
+
"package_name": "com.google.android.onetimeinitializer",
|
|
331
|
+
"partition": "product",
|
|
332
|
+
"title": "GoogleOneTimeInitializer",
|
|
333
|
+
"type": "priv-app"
|
|
334
|
+
}
|
|
335
|
+
],
|
|
320
336
|
"GooglePartnerSetup": [
|
|
321
337
|
{
|
|
322
338
|
"package_name": "com.google.android.partnersetup",
|
|
@@ -357,6 +373,14 @@
|
|
|
357
373
|
"type": "priv-app"
|
|
358
374
|
}
|
|
359
375
|
],
|
|
376
|
+
"GoogleRestorePixel": [
|
|
377
|
+
{
|
|
378
|
+
"package_name": "com.google.android.apps.restore",
|
|
379
|
+
"partition": "product",
|
|
380
|
+
"title": "GoogleRestorePrebuilt",
|
|
381
|
+
"type": "priv-app"
|
|
382
|
+
}
|
|
383
|
+
],
|
|
360
384
|
"GoogleServicesFramework": [
|
|
361
385
|
{
|
|
362
386
|
"package_name": "com.google.android.gsf",
|
|
@@ -555,6 +579,14 @@
|
|
|
555
579
|
"type": "priv-app"
|
|
556
580
|
}
|
|
557
581
|
],
|
|
582
|
+
"SetupWizardPixel": [
|
|
583
|
+
{
|
|
584
|
+
"package_name": "com.google.android.setupwizard",
|
|
585
|
+
"partition": "product",
|
|
586
|
+
"title": "SetupWizardPrebuilt",
|
|
587
|
+
"type": "priv-app"
|
|
588
|
+
}
|
|
589
|
+
],
|
|
558
590
|
"StorageManager": [
|
|
559
591
|
{
|
|
560
592
|
"package_name": "com.google.android.storagemanager",
|
|
@@ -7,7 +7,7 @@ NikGapps/main.py,sha256=Uv0HXy59-cuKM3Y33YGIA7URYIlP32SJ9Mq-P7uorNw,2590
|
|
|
7
7
|
NikGapps/overlay_control.py,sha256=3BVA8v5JeaFPqKbnjbrDE9qyxY12YTYAoH15r1thE-w,3097
|
|
8
8
|
NikGapps/test.py,sha256=M6fpDBtOpwHgR9bjAEhhjgGtAN9UuLEKZSU0HFX-xdE,84
|
|
9
9
|
NikGapps/build/Build.py,sha256=_-gEQD2vkci-dQOmiE-SCULiAGQ-LkyKWXhvCP61884,7621
|
|
10
|
-
NikGapps/build/NikGappsManager.py,sha256=
|
|
10
|
+
NikGapps/build/NikGappsManager.py,sha256=Fph8nTN2A344NwkefwPZPBHJpsOERt32n7tlH4b556g,21684
|
|
11
11
|
NikGapps/build/NikGappsOverlays.py,sha256=bbAIuIeE7HICdXRNeZJrvuW58_tUuDH9Du_1k6QPkxg,569
|
|
12
12
|
NikGapps/build/PackageConstants.py,sha256=-vmkiAWXoD5Ba1lmqd71ueEkivY7ne0zXSU3dzCfYLc,15847
|
|
13
13
|
NikGapps/build/Release.py,sha256=ww2ol4v6ZbL31EG8T3X0HzWtqWcZZKz3JYr93kVRZ5M,4834
|
|
@@ -22,9 +22,9 @@ NikGapps/helper/ConfigObj.py,sha256=ep9--o1SPgGXkElrjkf7hjF96KGSrmcQ9oGCpicN7D4,
|
|
|
22
22
|
NikGapps/helper/Package.py,sha256=P8BU3r_5t_6-Qs0WoTAt0rB64oVzqAE-NERItwYW1X4,9182
|
|
23
23
|
NikGapps/helper/__init__.py,sha256=47DEQpj8HBSa-_TImW-5JCeuQeRkm5NMpJWZG3hSuFU,0
|
|
24
24
|
NikGapps/helper/assets/addon.sh,sha256=qXwZ7GQVnOrkSNRcJTKycKRKkUa8kRA_iDwsKVDMHwY,9424
|
|
25
|
-
NikGapps/helper/assets/appsets.json,sha256=
|
|
26
|
-
NikGapps/helper/assets/changelogs.yaml,sha256=
|
|
27
|
-
NikGapps/helper/assets/config_versions.json,sha256=
|
|
25
|
+
NikGapps/helper/assets/appsets.json,sha256=quNDURzp2TlRzxPTuQKnKtSnbnkbBhQMElAFHKxuYCo,7090
|
|
26
|
+
NikGapps/helper/assets/changelogs.yaml,sha256=ztHyBxWSs5DLpLax5fAvzrjztXFhzJiczybsYkBSUN0,48223
|
|
27
|
+
NikGapps/helper/assets/config_versions.json,sha256=3BpuCgsUUrcHTeO-cFsZ-dS9EUcegNYI1vPK2v053-M,102
|
|
28
28
|
NikGapps/helper/assets/customize.sh,sha256=bfYUgf1vd7GGUix4CPIhzn2eFN-DJh67IVIY6eMIrGo,10242
|
|
29
29
|
NikGapps/helper/assets/debloater.config,sha256=7Wx-WH93JSJHTYJCT5-y8TtPFFIzQgMKJcKJaf583bU,878
|
|
30
30
|
NikGapps/helper/assets/functions.sh,sha256=9jOHEM0cmkP0cMIj7KaNwXDOAG0WxOuIZganxu1YoFU,3859
|
|
@@ -37,7 +37,7 @@ NikGapps/helper/assets/mount.sh,sha256=G_rAktQyrUQJpQlCpihbCwWrDCJ71zNEZJ3ZCARA7
|
|
|
37
37
|
NikGapps/helper/assets/mtg_mount.sh,sha256=M6oYs7aLmMRBJbIq8ANmHxGrTIf7Jxe0GLsPq3SdmJ0,2697
|
|
38
38
|
NikGapps/helper/assets/nikgapps.config,sha256=807lgmt0MhX2hx18ZgM7idj5ZwCgyHkKJ4VtSKOD3ew,1575
|
|
39
39
|
NikGapps/helper/assets/nikgapps_functions.sh,sha256=SXzJEPTwYdhqPqgSAUx9Fa4UNPWSbNHVuUI31TGFAh8,57645
|
|
40
|
-
NikGapps/helper/assets/packages.json,sha256=
|
|
40
|
+
NikGapps/helper/assets/packages.json,sha256=3urinTXrQRfomo0DTO4_CdQLAFWXwRKRFv6hxxsaBKM,18223
|
|
41
41
|
NikGapps/helper/assets/uninstaller.sh,sha256=Lob89FNVfpHFkdzUJFDwVQwlnc7WB_U-U28Y4fZgycE,870
|
|
42
42
|
NikGapps/helper/assets/unmount.sh,sha256=L8Lq7ZVfwazXaZp5Jkuce2pCGJCLZh57uj_BzFSDb-c,1107
|
|
43
43
|
NikGapps/helper/compression/CompOps.py,sha256=RjYxtNh98xCds58oWxX8UGbe9g-WUYCriTRupWZqMZc,1823
|
|
@@ -54,9 +54,9 @@ NikGapps/helper/overlay/Resources.py,sha256=bKWJEF2avl3j2ud390HQq9fRMMA8GKh9-KAB
|
|
|
54
54
|
NikGapps/helper/overlay/String.py,sha256=nyCAD_dNfwHlOgj4zuKGGz71n20CLEKyZCgrVAmiX2I,469
|
|
55
55
|
NikGapps/helper/overlay/StringArray.py,sha256=DYPEAIdpicaJ3C08IYW6Q2tnTH6gUFXmu3KhQlHGY5g,563
|
|
56
56
|
NikGapps/helper/overlay/__init__.py,sha256=47DEQpj8HBSa-_TImW-5JCeuQeRkm5NMpJWZG3hSuFU,0
|
|
57
|
-
NikGapps-3.
|
|
58
|
-
NikGapps-3.
|
|
59
|
-
NikGapps-3.
|
|
60
|
-
NikGapps-3.
|
|
61
|
-
NikGapps-3.
|
|
62
|
-
NikGapps-3.
|
|
57
|
+
NikGapps-3.44.dist-info/LICENSE,sha256=OXLcl0T2SZ8Pmy2_dmlvKuetivmyPd5m1q-Gyd-zaYY,35149
|
|
58
|
+
NikGapps-3.44.dist-info/METADATA,sha256=tNHEim4mo6CYHcNcg66gd2zELeAn8L_e7ThseI01BR4,4147
|
|
59
|
+
NikGapps-3.44.dist-info/WHEEL,sha256=P9jw-gEje8ByB7_hXoICnHtVCrEwMQh-630tKvQWehc,91
|
|
60
|
+
NikGapps-3.44.dist-info/entry_points.txt,sha256=iKbeOiuELwTDu5kmQHrU9XBVASWRR6_TuRIRva2UnAY,286
|
|
61
|
+
NikGapps-3.44.dist-info/top_level.txt,sha256=CD7RpCb7bzjyvpQLt8hh2gU6X1wj3Z0NIErVkg-nJI4,9
|
|
62
|
+
NikGapps-3.44.dist-info/RECORD,,
|
|
File without changes
|
|
File without changes
|
|
File without changes
|
|
File without changes
|