android-notify 1.51.2__py3-none-any.whl → 1.52__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.
Potentially problematic release.
This version of android-notify might be problematic. Click here for more details.
- {android_notify-1.51.2.dist-info → android_notify-1.52.dist-info}/METADATA +21 -2
- {android_notify-1.51.2.dist-info → android_notify-1.52.dist-info}/RECORD +4 -4
- {android_notify-1.51.2.dist-info → android_notify-1.52.dist-info}/WHEEL +0 -0
- {android_notify-1.51.2.dist-info → android_notify-1.52.dist-info}/top_level.txt +0 -0
|
@@ -1,6 +1,6 @@
|
|
|
1
1
|
Metadata-Version: 2.2
|
|
2
2
|
Name: android-notify
|
|
3
|
-
Version: 1.
|
|
3
|
+
Version: 1.52
|
|
4
4
|
Summary: A Python package that simpilfies creating Android notifications in Kivy apps.
|
|
5
5
|
Home-page: https://github.com/fector101/android-notify
|
|
6
6
|
Author: Fabian
|
|
@@ -48,6 +48,7 @@ Dynamic: summary
|
|
|
48
48
|
- Also Compatible with Android 8.0+.
|
|
49
49
|
- Supports including images in notifications.
|
|
50
50
|
- All Notifications can take Functions (version 1.50+) [functions section](#functions).
|
|
51
|
+
- Advanced Notification Handling [section](#advanced-features).
|
|
51
52
|
- Support for multiple notification styles:
|
|
52
53
|
- [Simple](#basic-usage)
|
|
53
54
|
- [Progress](#progress-bar-notification)
|
|
@@ -55,7 +56,7 @@ Dynamic: summary
|
|
|
55
56
|
- [Inbox](#inbox-notification-style)
|
|
56
57
|
- [Large Icon](#notification-with-an-image-large-icon-style)
|
|
57
58
|
- [Buttons](#notification-with-buttons)
|
|
58
|
-
- [Big Text](#big-text-notification
|
|
59
|
+
- [Big Text](#big-text-notification)
|
|
59
60
|
|
|
60
61
|
This module automatically handles:
|
|
61
62
|
|
|
@@ -278,6 +279,24 @@ notification = Notification(
|
|
|
278
279
|
)
|
|
279
280
|
```
|
|
280
281
|
|
|
282
|
+
### Changing Style When Already Sent
|
|
283
|
+
|
|
284
|
+
```python
|
|
285
|
+
from android_notify import NotificationStyles
|
|
286
|
+
|
|
287
|
+
notification = Notification(
|
|
288
|
+
title="Download..",
|
|
289
|
+
style="progress"
|
|
290
|
+
)
|
|
291
|
+
notification.send()
|
|
292
|
+
|
|
293
|
+
notification.updateTitle("Download Completed")
|
|
294
|
+
notification.removeProgressBar()
|
|
295
|
+
notification.large_icon_path="users/imgs/profile1234.png"
|
|
296
|
+
notification.addNotificationStyle(NotificationStyles.LARGE_ICON,already_sent=True)
|
|
297
|
+
|
|
298
|
+
```
|
|
299
|
+
|
|
281
300
|
**Sample Image:**
|
|
282
301
|

|
|
283
302
|
|
|
@@ -3,7 +3,7 @@ android_notify/__main__.py,sha256=47DEQpj8HBSa-_TImW-5JCeuQeRkm5NMpJWZG3hSuFU,0
|
|
|
3
3
|
android_notify/core.py,sha256=B3gOgbLGGI6tz-Q_T2wmk74oggOSDX0Qz4lqj00vaFo,6114
|
|
4
4
|
android_notify/styles.py,sha256=3olKruhAbTrk5OzuhDnk_Pgpv8XYk8dWFmr48Q9rQVk,352
|
|
5
5
|
android_notify/sword.py,sha256=P1P1leYCqnLwtvUC0KDWGp8DI3wkwVjHw8bBB1xSgcE,26002
|
|
6
|
-
android_notify-1.
|
|
7
|
-
android_notify-1.
|
|
8
|
-
android_notify-1.
|
|
9
|
-
android_notify-1.
|
|
6
|
+
android_notify-1.52.dist-info/METADATA,sha256=4U4Zrw7USlCJ0tKPBAsTYflJRWzuZYFQgtmGP2iAFKk,13165
|
|
7
|
+
android_notify-1.52.dist-info/WHEEL,sha256=In9FTNxeP60KnTkGw7wk6mJPYd_dQSjEZmXdBdMCI-8,91
|
|
8
|
+
android_notify-1.52.dist-info/top_level.txt,sha256=IR1ONMrRSRINZpWn2X0dL5gbWwWINsK7PW8Jy2p4fU8,15
|
|
9
|
+
android_notify-1.52.dist-info/RECORD,,
|
|
File without changes
|
|
File without changes
|