NikGapps 3.39__py3-none-any.whl → 3.41__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 +8 -2
- NikGapps/helper/overlay/Overlay.py +3 -2
- {NikGapps-3.39.dist-info → NikGapps-3.41.dist-info}/METADATA +6 -6
- {NikGapps-3.39.dist-info → NikGapps-3.41.dist-info}/RECORD +8 -8
- {NikGapps-3.39.dist-info → NikGapps-3.41.dist-info}/WHEEL +1 -1
- {NikGapps-3.39.dist-info → NikGapps-3.41.dist-info}/LICENSE +0 -0
- {NikGapps-3.39.dist-info → NikGapps-3.41.dist-info}/entry_points.txt +0 -0
- {NikGapps-3.39.dist-info → NikGapps-3.41.dist-info}/top_level.txt +0 -0
|
@@ -328,11 +328,17 @@ class NikGappsManager:
|
|
|
328
328
|
{
|
|
329
329
|
"package_title": "GoogleSounds",
|
|
330
330
|
"package_name": "com.nikgapps.overlay.sounds",
|
|
331
|
-
"resources": Library.get_google_sounds_resources()
|
|
331
|
+
"resources": Library.get_google_sounds_resources(),
|
|
332
|
+
"target_package": "com.android.settings"
|
|
332
333
|
}
|
|
333
334
|
],
|
|
334
335
|
}
|
|
335
|
-
return [Overlay(overlay["package_title"],
|
|
336
|
+
return [Overlay(apk_name=overlay["package_title"],
|
|
337
|
+
package_name=overlay["package_name"],
|
|
338
|
+
android_version=self.android_version,
|
|
339
|
+
resources=overlay["resources"],
|
|
340
|
+
target_package=overlay.get("target_package", "android"),
|
|
341
|
+
priority=overlay.get("priority", "99"))
|
|
336
342
|
for overlay
|
|
337
343
|
in package_overlays.get(package_name, [])]
|
|
338
344
|
|
|
@@ -5,11 +5,12 @@ from NikGapps.helper.overlay.Manifest import Manifest
|
|
|
5
5
|
|
|
6
6
|
|
|
7
7
|
class Overlay:
|
|
8
|
-
def __init__(self, apk_name, package_name, android_version, resources, priority="99"):
|
|
8
|
+
def __init__(self, apk_name, package_name, android_version, resources, priority="99", target_package="android"):
|
|
9
9
|
self.folder = f"{apk_name}Overlay"
|
|
10
10
|
self.apk_name = f"{self.folder}.apk"
|
|
11
11
|
self.resources = resources
|
|
12
|
-
self.manifest = Manifest(package=package_name, android_version=android_version, priority=priority
|
|
12
|
+
self.manifest = Manifest(package=package_name, android_version=android_version, priority=priority,
|
|
13
|
+
target_package=target_package)
|
|
13
14
|
self.apkMetaInfo = ApkMetaInfo(apk_file_name=self.apk_name, android_version=android_version)
|
|
14
15
|
|
|
15
16
|
def build_apk_source(self, source):
|
|
@@ -1,6 +1,6 @@
|
|
|
1
1
|
Metadata-Version: 2.1
|
|
2
2
|
Name: NikGapps
|
|
3
|
-
Version: 3.
|
|
3
|
+
Version: 3.41
|
|
4
4
|
Summary: A short description of your project
|
|
5
5
|
Home-page: https://github.com/nikgapps/project
|
|
6
6
|
Author: Nikhil Menghani
|
|
@@ -15,15 +15,15 @@ Requires-Dist: pytz ~=2024.2
|
|
|
15
15
|
Requires-Dist: pysftp ~=0.2.9
|
|
16
16
|
Requires-Dist: requests ~=2.32.3
|
|
17
17
|
Requires-Dist: PyYAML ~=6.0.2
|
|
18
|
-
Requires-Dist: psutil ~=6.
|
|
19
|
-
Requires-Dist: setuptools ~=75.
|
|
18
|
+
Requires-Dist: psutil ~=6.1.0
|
|
19
|
+
Requires-Dist: setuptools ~=75.3.0
|
|
20
20
|
Requires-Dist: pexpect ~=4.9.0
|
|
21
21
|
Requires-Dist: GitPython ~=3.1.43
|
|
22
22
|
Requires-Dist: PyGithub ~=2.4.0
|
|
23
|
-
Requires-Dist: python-gitlab ~=
|
|
24
|
-
Requires-Dist: cryptography ~=43.0.
|
|
23
|
+
Requires-Dist: python-gitlab ~=5.0.0
|
|
24
|
+
Requires-Dist: cryptography ~=43.0.3
|
|
25
25
|
Requires-Dist: python-dotenv ~=1.0.1
|
|
26
|
-
Requires-Dist: niklibrary ~=0.
|
|
26
|
+
Requires-Dist: niklibrary ~=0.27
|
|
27
27
|
|
|
28
28
|

|
|
29
29
|
|
|
@@ -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=o42UCfosxeWSMevBN4ckN062RJ083xxLEti6_Lcq3yg,21664
|
|
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
|
|
@@ -49,14 +49,14 @@ NikGapps/helper/overlay/ApkMetaInfo.py,sha256=l8Au74MPXWqllzooNGF8AIn-JTWiwxIuYA
|
|
|
49
49
|
NikGapps/helper/overlay/Bool.py,sha256=1VfI30ytFvT5eTWHwRCePE2hVRb_X-lFYPhAxS6xVCM,372
|
|
50
50
|
NikGapps/helper/overlay/Library.py,sha256=QTw2EWAawPyB_njsxPf5ZLaZqXp7flGe_hfVEcoLFVw,43862
|
|
51
51
|
NikGapps/helper/overlay/Manifest.py,sha256=johNJ7iejBTBubTPUdsJLqr4NlxC6USaHn1NZzDzaHw,2450
|
|
52
|
-
NikGapps/helper/overlay/Overlay.py,sha256=
|
|
52
|
+
NikGapps/helper/overlay/Overlay.py,sha256=g9pQNuw481yRN31Vj8oc1Q5wyOpNaocHb9K8dHxTv30,1000
|
|
53
53
|
NikGapps/helper/overlay/Resources.py,sha256=bKWJEF2avl3j2ud390HQq9fRMMA8GKh9-KABdvim-Wg,1458
|
|
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.41.dist-info/LICENSE,sha256=OXLcl0T2SZ8Pmy2_dmlvKuetivmyPd5m1q-Gyd-zaYY,35149
|
|
58
|
+
NikGapps-3.41.dist-info/METADATA,sha256=nXs-yKRXFCt5SBiKUBgGUEAnQJfRcbEVOkABwZd3L6g,4147
|
|
59
|
+
NikGapps-3.41.dist-info/WHEEL,sha256=P9jw-gEje8ByB7_hXoICnHtVCrEwMQh-630tKvQWehc,91
|
|
60
|
+
NikGapps-3.41.dist-info/entry_points.txt,sha256=iKbeOiuELwTDu5kmQHrU9XBVASWRR6_TuRIRva2UnAY,286
|
|
61
|
+
NikGapps-3.41.dist-info/top_level.txt,sha256=CD7RpCb7bzjyvpQLt8hh2gU6X1wj3Z0NIErVkg-nJI4,9
|
|
62
|
+
NikGapps-3.41.dist-info/RECORD,,
|
|
File without changes
|
|
File without changes
|
|
File without changes
|