A Python package that simplifies creating Android notifications in Kivy and Flet apps.
Project description
Android-Notify
Android Notify is a Python library for effortlessly creating and managing Android notifications in Kivy and Flet apps.
Supports various styles and ensures seamless integration, customization and Pythonic APIs.
Features
-
Multiple Notification Styles: Support for various notification styles including:
- Simple text notifications
- Progress bar notifications (determinate and indeterminate)
- Large icon notifications
- Big picture notifications
- Combined image styles
- Custom notification Icon - images section
- Big text notifications
- Inbox-style notifications
- Colored texts and Icons
-
Rich Functionality:
- Add action buttons with custom callbacks
- Update notification content dynamically
- Manage progress bars with fine-grained control
- Custom notification channels for Android 8.0+ (Creating and Deleting)
- Silent notifications
- Persistent notifications
- Click handlers and callbacks
- Cancel Notifications
Quick Start
from android_notify import Notification
# Simple notification
Notification(
title="Hello",
message="This is a basic notification."
).send()
Sample Image:
Installation
Kivy apps:
In your buildozer.spec file, ensure you include the following:
# Add pyjnius so ensure it's packaged with the build
requirements = python3, kivy, pyjnius, android-notify
# Add permission for notifications
android.permissions = POST_NOTIFICATIONS
# Required dependency (write exactly as shown, no quotation marks)
android.gradle_dependencies = androidx.core:core-ktx:1.15.0
android.enable_androidx = True
android.api = 35
Flet apps:
In your pyproject.toml file, ensure you include the following:
[tool.flet.android]
dependencies = [
"pyjnius","android-notify==1.60.10.dev0"
]
[tool.flet.android.permission]
"android.permission.POST_NOTIFICATIONS" = true
- example of complete flet pyproject.toml
Desktop
For IDE IntelliSense Can be installed via pip install:
pip install android_notify
android-notify -v
Installing without Androidx
How to use without gradle_dependencies
Use android-notify==1.60.10.dev0 to install via pip
In Kivy
# buildozer.spec
requirements = python3, kivy, pyjnius, android-notify==1.60.10.dev0
On Pydroid 3
On the pydroid 3 mobile app for running python code you can test some features.
- In pip section where you're asked to insert
Libary namepasteandroid-notify==1.60.10.dev0 - Minimal working example
# Testing with `android-notify==1.60.10.dev0` on pydroid
from kivy.app import App
from kivy.uix.boxlayout import BoxLayout
from kivy.uix.button import Button
from android_notify import Notification
from android_notify.core import asks_permission_if_needed
class AndroidNotifyDemoApp(App):
def build(self):
layout = BoxLayout(orientation='vertical', spacing=10, padding=20)
layout.add_widget(Button(
text="Ask Notification Permission",
on_release=self.request_permission
))
layout.add_widget(Button(
text="Send Notification",
on_release=self.send_notification
))
return layout
def request_permission(self, *args):
asks_permission_if_needed(legacy=True)
def send_notification(self, *args):
Notification(
title="Hello from Android Notify",
message="This is a basic notification.",
channel_id="android_notify_demo",
channel_name="Android Notify Demo"
).send()
if __name__ == "__main__":
AndroidNotifyDemoApp().run()
Documentation
For Dev Version usage
requirements = python3, kivy, pyjnius, https://github.com/Fector101/android_notify/archive/main.zip
To talk to BroadCast Listener From Buttons
- Make things happen without being in your app
from android_notify import Notification
notification = Notification(title="Reciver Notification")
notification.addButton(text="Stop", receiver_name="CarouselReceiver", action="ACTION_STOP")
notification.addButton(text="Skip", receiver_name="CarouselReceiver", action="ACTION_SKIP")
You can use this wiki as a guide create a broadcast listener
To use colored text in your notifications
- Copy the res folder to your app path.
- Lastly in your
buildozer.specfile
Addsource.include_exts = xmlandandroid.add_resources = # path you pasted
# Use Hex Code to be Safe
n = Notification(title="Title and Message Color", message="Testing",title_color="red")
n.send()
To use Custom Sounds
- Put audio files in
res/rawfolder, - Then from
buildozer.specpoint to res folderandroid.add_resources = res - and includes it's format
source.include_exts = wav.
Lastly From the code
# Create a custom notification channel with a unique sound resource for android 8+
Notification.createChannel(
id="weird_sound_tester",
name="Weird Sound Tester",
description="A test channel for custom sounds from the res/raw folder.",
res_sound_name="sneeze" # file name without .wav or .mp3
)
# Send a notification through the created channel
n=Notification(
title="Custom Sound Notification",
message="This tests playback of a custom sound (sneeze.wav) stored in res/raw.",
channel_id="weird_sound_tester" # important tells notification to use right channel
)
n.setSound("sneeze")# for android 7 below
n.send()
Vibrate feature
# buildozer.spec
android.permissions = VIBRATE
Notification.createChannel(id='shake', name="Shake Passage", vibrate=True)
n=Notification(title='Vibrate',channel_id='shake')
n.setVibrate() # for less than android 8
n.fVibrate() # To Force Vibrate
n.send()
Add Data to Notification
NotificationHandler.data_objectreturns adictof data in the clickednotificationsetDatacan also be called aftersendto changedata_objectstored- Use
nameif value is constantNotification(name="change page")
from android_notify import Notification, NotificationHandler
def build(self):
notification = Notification(title="Hello")
notification.setData({"next wallpaper path": "test.jpg"})
notification.send()
def on_start(self):
notification_data = NotificationHandler.data_object # {"next wallpaper path": "test.jpg",...}
print(notifcation_data)
def on_resume(self):
notification_data = NotificationHandler.data_object # {"next wallpaper path": "test.jpg",...}
print(notifcation_data)
For full documentation, examples, and advanced usage, API reference visit the documentation
☕ Support the Project
If you find this project helpful, your support would help me continue working on open-source projects donate
Project details
Release history Release notifications | RSS feed
Download files
Download the file for your platform. If you're not sure which to choose, learn more about installing packages.
Source Distribution
Built Distribution
Filter files by name, interpreter, ABI, and platform.
If you're not sure about the file name format, learn more about wheel file names.
Copy a direct link to the current filters
File details
Details for the file android_notify-1.60.10.tar.gz.
File metadata
- Download URL: android_notify-1.60.10.tar.gz
- Upload date:
- Size: 92.5 kB
- Tags: Source
- Uploaded using Trusted Publishing? Yes
- Uploaded via: twine/6.1.0 CPython/3.13.7
File hashes
| Algorithm | Hash digest | |
|---|---|---|
| SHA256 |
84f3e0a5d1dfdb20e7984e47cc6da5023b6a0dca6ce625506c13c65ce2d1cbf3
|
|
| MD5 |
a182fde8a1a8759cc0499d8429adbfa7
|
|
| BLAKE2b-256 |
ae33e639f42a9c8f6e91040dd38685e4cf62a58d0d1d03412fac683d9f6731e7
|
Provenance
The following attestation bundles were made for android_notify-1.60.10.tar.gz:
Publisher:
publish.yml on Fector101/android_notify
-
Statement:
-
Statement type:
https://in-toto.io/Statement/v1 -
Predicate type:
https://docs.pypi.org/attestations/publish/v1 -
Subject name:
android_notify-1.60.10.tar.gz -
Subject digest:
84f3e0a5d1dfdb20e7984e47cc6da5023b6a0dca6ce625506c13c65ce2d1cbf3 - Sigstore transparency entry: 907677919
- Sigstore integration time:
-
Permalink:
Fector101/android_notify@1f328e533979f85ac51c4496bceb8aff8b4c78f5 -
Branch / Tag:
refs/heads/main - Owner: https://github.com/Fector101
-
Access:
public
-
Token Issuer:
https://token.actions.githubusercontent.com -
Runner Environment:
github-hosted -
Publication workflow:
publish.yml@1f328e533979f85ac51c4496bceb8aff8b4c78f5 -
Trigger Event:
workflow_dispatch
-
Statement type:
File details
Details for the file android_notify-1.60.10-py3-none-any.whl.
File metadata
- Download URL: android_notify-1.60.10-py3-none-any.whl
- Upload date:
- Size: 101.2 kB
- Tags: Python 3
- Uploaded using Trusted Publishing? Yes
- Uploaded via: twine/6.1.0 CPython/3.13.7
File hashes
| Algorithm | Hash digest | |
|---|---|---|
| SHA256 |
a65d8a8394da6f7de984c518f379962edc227eff1c3ab7c667949a20e53aa728
|
|
| MD5 |
1ed46539959963a996307471f96287fa
|
|
| BLAKE2b-256 |
81205278f3816e04bbd2124d8e8b0779fbf815f93a4e06e575b580b928cc641c
|
Provenance
The following attestation bundles were made for android_notify-1.60.10-py3-none-any.whl:
Publisher:
publish.yml on Fector101/android_notify
-
Statement:
-
Statement type:
https://in-toto.io/Statement/v1 -
Predicate type:
https://docs.pypi.org/attestations/publish/v1 -
Subject name:
android_notify-1.60.10-py3-none-any.whl -
Subject digest:
a65d8a8394da6f7de984c518f379962edc227eff1c3ab7c667949a20e53aa728 - Sigstore transparency entry: 907677969
- Sigstore integration time:
-
Permalink:
Fector101/android_notify@1f328e533979f85ac51c4496bceb8aff8b4c78f5 -
Branch / Tag:
refs/heads/main - Owner: https://github.com/Fector101
-
Access:
public
-
Token Issuer:
https://token.actions.githubusercontent.com -
Runner Environment:
github-hosted -
Publication workflow:
publish.yml@1f328e533979f85ac51c4496bceb8aff8b4c78f5 -
Trigger Event:
workflow_dispatch
-
Statement type: