android-notify 1.51__tar.gz → 1.51.1__tar.gz
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 → android_notify-1.51.1}/PKG-INFO +11 -9
- {android_notify-1.51 → android_notify-1.51.1}/README.md +10 -8
- {android_notify-1.51 → android_notify-1.51.1}/android_notify.egg-info/PKG-INFO +11 -9
- {android_notify-1.51 → android_notify-1.51.1}/setup.py +1 -1
- {android_notify-1.51 → android_notify-1.51.1}/android_notify/__init__.py +0 -0
- {android_notify-1.51 → android_notify-1.51.1}/android_notify/__main__.py +0 -0
- {android_notify-1.51 → android_notify-1.51.1}/android_notify/core.py +0 -0
- {android_notify-1.51 → android_notify-1.51.1}/android_notify/styles.py +0 -0
- {android_notify-1.51 → android_notify-1.51.1}/android_notify/sword.py +0 -0
- {android_notify-1.51 → android_notify-1.51.1}/android_notify.egg-info/SOURCES.txt +0 -0
- {android_notify-1.51 → android_notify-1.51.1}/android_notify.egg-info/dependency_links.txt +0 -0
- {android_notify-1.51 → android_notify-1.51.1}/android_notify.egg-info/requires.txt +0 -0
- {android_notify-1.51 → android_notify-1.51.1}/android_notify.egg-info/top_level.txt +0 -0
- {android_notify-1.51 → android_notify-1.51.1}/setup.cfg +0 -0
|
@@ -1,6 +1,6 @@
|
|
|
1
1
|
Metadata-Version: 2.2
|
|
2
2
|
Name: android-notify
|
|
3
|
-
Version: 1.51
|
|
3
|
+
Version: 1.51.1
|
|
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
|
|
@@ -47,7 +47,7 @@ Dynamic: summary
|
|
|
47
47
|
|
|
48
48
|
- Also Compatible with Android 8.0+.
|
|
49
49
|
- Supports including images in notifications.
|
|
50
|
-
- All Notifications can take Functions (version 1.50+) [functions
|
|
50
|
+
- All Notifications can take Functions (version 1.50+) [functions section](#functions).
|
|
51
51
|
- Support for multiple notification styles:
|
|
52
52
|
- [Simple](#basic-usage)
|
|
53
53
|
- [Progress](#progress-bar-notification)
|
|
@@ -88,6 +88,7 @@ android.permissions = POST_NOTIFICATIONS
|
|
|
88
88
|
# Required dependencies (write exactly as shown, no quotation marks)
|
|
89
89
|
android.gradle_dependencies = androidx.core:core:1.6.0, androidx.core:core-ktx:1.15.0
|
|
90
90
|
android.enable_androidx = True
|
|
91
|
+
android.api = 35
|
|
91
92
|
```
|
|
92
93
|
|
|
93
94
|
---
|
|
@@ -142,10 +143,14 @@ Clock.schedule_once(lambda dt: notification.updateProgressBar(30, "30% downloade
|
|
|
142
143
|
**Sample Image:**
|
|
143
144
|

|
|
144
145
|
|
|
145
|
-
####
|
|
146
|
+
#### Images
|
|
147
|
+
|
|
148
|
+
##### Notification with an Image (Big Picture Style)
|
|
146
149
|
|
|
147
150
|
> [!NOTE]
|
|
148
|
-
> Online Images should start with `http://` or `https://`
|
|
151
|
+
> Online Images should start with `http://` or `https://`
|
|
152
|
+
> And request for permission, `android.permissions = INTERNET`
|
|
153
|
+
> No additionally permissions needed for images in App folder
|
|
149
154
|
|
|
150
155
|
```python
|
|
151
156
|
# Image notification
|
|
@@ -162,10 +167,7 @@ notification.send()
|
|
|
162
167
|
**Sample Image:**
|
|
163
168
|

|
|
164
169
|
|
|
165
|
-
|
|
166
|
-
|
|
167
|
-
> [!NOTE]
|
|
168
|
-
> Online Images should start with `http://` or `https://`
|
|
170
|
+
##### Notification with an Image (Large Icon Style)
|
|
169
171
|
|
|
170
172
|
```python
|
|
171
173
|
notification = Notification(
|
|
@@ -223,7 +225,7 @@ notification.send()
|
|
|
223
225
|
```python
|
|
224
226
|
notification = Notification(
|
|
225
227
|
title="Article",
|
|
226
|
-
subject="Histroy of Loerm Ipsuim"
|
|
228
|
+
subject="Histroy of Loerm Ipsuim",
|
|
227
229
|
message="Lorem Ipsum is simply dummy text of the printing and ...",
|
|
228
230
|
style="big_text"
|
|
229
231
|
)
|
|
@@ -11,7 +11,7 @@
|
|
|
11
11
|
|
|
12
12
|
- Also Compatible with Android 8.0+.
|
|
13
13
|
- Supports including images in notifications.
|
|
14
|
-
- All Notifications can take Functions (version 1.50+) [functions
|
|
14
|
+
- All Notifications can take Functions (version 1.50+) [functions section](#functions).
|
|
15
15
|
- Support for multiple notification styles:
|
|
16
16
|
- [Simple](#basic-usage)
|
|
17
17
|
- [Progress](#progress-bar-notification)
|
|
@@ -52,6 +52,7 @@ android.permissions = POST_NOTIFICATIONS
|
|
|
52
52
|
# Required dependencies (write exactly as shown, no quotation marks)
|
|
53
53
|
android.gradle_dependencies = androidx.core:core:1.6.0, androidx.core:core-ktx:1.15.0
|
|
54
54
|
android.enable_androidx = True
|
|
55
|
+
android.api = 35
|
|
55
56
|
```
|
|
56
57
|
|
|
57
58
|
---
|
|
@@ -106,10 +107,14 @@ Clock.schedule_once(lambda dt: notification.updateProgressBar(30, "30% downloade
|
|
|
106
107
|
**Sample Image:**
|
|
107
108
|

|
|
108
109
|
|
|
109
|
-
####
|
|
110
|
+
#### Images
|
|
111
|
+
|
|
112
|
+
##### Notification with an Image (Big Picture Style)
|
|
110
113
|
|
|
111
114
|
> [!NOTE]
|
|
112
|
-
> Online Images should start with `http://` or `https://`
|
|
115
|
+
> Online Images should start with `http://` or `https://`
|
|
116
|
+
> And request for permission, `android.permissions = INTERNET`
|
|
117
|
+
> No additionally permissions needed for images in App folder
|
|
113
118
|
|
|
114
119
|
```python
|
|
115
120
|
# Image notification
|
|
@@ -126,10 +131,7 @@ notification.send()
|
|
|
126
131
|
**Sample Image:**
|
|
127
132
|

|
|
128
133
|
|
|
129
|
-
|
|
130
|
-
|
|
131
|
-
> [!NOTE]
|
|
132
|
-
> Online Images should start with `http://` or `https://`
|
|
134
|
+
##### Notification with an Image (Large Icon Style)
|
|
133
135
|
|
|
134
136
|
```python
|
|
135
137
|
notification = Notification(
|
|
@@ -187,7 +189,7 @@ notification.send()
|
|
|
187
189
|
```python
|
|
188
190
|
notification = Notification(
|
|
189
191
|
title="Article",
|
|
190
|
-
subject="Histroy of Loerm Ipsuim"
|
|
192
|
+
subject="Histroy of Loerm Ipsuim",
|
|
191
193
|
message="Lorem Ipsum is simply dummy text of the printing and ...",
|
|
192
194
|
style="big_text"
|
|
193
195
|
)
|
|
@@ -1,6 +1,6 @@
|
|
|
1
1
|
Metadata-Version: 2.2
|
|
2
2
|
Name: android-notify
|
|
3
|
-
Version: 1.51
|
|
3
|
+
Version: 1.51.1
|
|
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
|
|
@@ -47,7 +47,7 @@ Dynamic: summary
|
|
|
47
47
|
|
|
48
48
|
- Also Compatible with Android 8.0+.
|
|
49
49
|
- Supports including images in notifications.
|
|
50
|
-
- All Notifications can take Functions (version 1.50+) [functions
|
|
50
|
+
- All Notifications can take Functions (version 1.50+) [functions section](#functions).
|
|
51
51
|
- Support for multiple notification styles:
|
|
52
52
|
- [Simple](#basic-usage)
|
|
53
53
|
- [Progress](#progress-bar-notification)
|
|
@@ -88,6 +88,7 @@ android.permissions = POST_NOTIFICATIONS
|
|
|
88
88
|
# Required dependencies (write exactly as shown, no quotation marks)
|
|
89
89
|
android.gradle_dependencies = androidx.core:core:1.6.0, androidx.core:core-ktx:1.15.0
|
|
90
90
|
android.enable_androidx = True
|
|
91
|
+
android.api = 35
|
|
91
92
|
```
|
|
92
93
|
|
|
93
94
|
---
|
|
@@ -142,10 +143,14 @@ Clock.schedule_once(lambda dt: notification.updateProgressBar(30, "30% downloade
|
|
|
142
143
|
**Sample Image:**
|
|
143
144
|

|
|
144
145
|
|
|
145
|
-
####
|
|
146
|
+
#### Images
|
|
147
|
+
|
|
148
|
+
##### Notification with an Image (Big Picture Style)
|
|
146
149
|
|
|
147
150
|
> [!NOTE]
|
|
148
|
-
> Online Images should start with `http://` or `https://`
|
|
151
|
+
> Online Images should start with `http://` or `https://`
|
|
152
|
+
> And request for permission, `android.permissions = INTERNET`
|
|
153
|
+
> No additionally permissions needed for images in App folder
|
|
149
154
|
|
|
150
155
|
```python
|
|
151
156
|
# Image notification
|
|
@@ -162,10 +167,7 @@ notification.send()
|
|
|
162
167
|
**Sample Image:**
|
|
163
168
|

|
|
164
169
|
|
|
165
|
-
|
|
166
|
-
|
|
167
|
-
> [!NOTE]
|
|
168
|
-
> Online Images should start with `http://` or `https://`
|
|
170
|
+
##### Notification with an Image (Large Icon Style)
|
|
169
171
|
|
|
170
172
|
```python
|
|
171
173
|
notification = Notification(
|
|
@@ -223,7 +225,7 @@ notification.send()
|
|
|
223
225
|
```python
|
|
224
226
|
notification = Notification(
|
|
225
227
|
title="Article",
|
|
226
|
-
subject="Histroy of Loerm Ipsuim"
|
|
228
|
+
subject="Histroy of Loerm Ipsuim",
|
|
227
229
|
message="Lorem Ipsum is simply dummy text of the printing and ...",
|
|
228
230
|
style="big_text"
|
|
229
231
|
)
|
|
@@ -6,7 +6,7 @@ with open("README.md", "r", encoding="utf-8") as readme_data:
|
|
|
6
6
|
|
|
7
7
|
setup(
|
|
8
8
|
name="android-notify",
|
|
9
|
-
version="1.51",
|
|
9
|
+
version="1.51.1",
|
|
10
10
|
author="Fabian",
|
|
11
11
|
author_email='fector101@yahoo.com',
|
|
12
12
|
description="A Python package that simpilfies creating Android notifications in Kivy apps.",
|
|
File without changes
|
|
File without changes
|
|
File without changes
|
|
File without changes
|
|
File without changes
|
|
File without changes
|
|
File without changes
|
|
File without changes
|
|
File without changes
|
|
File without changes
|