Skip to content

Commit 353b31f

Browse files
committed
v1.60.9.dev0 - permissions on devices below android 13, flet logger fix and patch to run kivy service on PC
1 parent aaaa98b commit 353b31f

3 files changed

Lines changed: 6 additions & 6 deletions

File tree

README.md

Lines changed: 4 additions & 4 deletions
Original file line numberDiff line numberDiff line change
@@ -58,7 +58,7 @@ In your **`buildozer.spec`** file, ensure you include the following:
5858

5959
```ini
6060
# Add pyjnius so ensure it's packaged with the build
61-
requirements = python3, kivy, pyjnius, android-notify==1.60.8.dev0
61+
requirements = python3, kivy, pyjnius, android-notify==1.60.9.dev0
6262
# Add permission for notifications
6363
android.permissions = POST_NOTIFICATIONS
6464
```
@@ -76,7 +76,7 @@ In your `pyproject.toml` file, ensure you include the following:
7676
```toml
7777
[tool.flet.android]
7878
dependencies = [
79-
"pyjnius","android-notify==1.60.8.dev0"
79+
"pyjnius","android-notify==1.60.9.dev0"
8080
]
8181

8282
[tool.flet.android.permission]
@@ -94,10 +94,10 @@ dependencies = [
9494
<br/>
9595

9696
On the [pydroid 3](https://play.google.com/store/apps/details?id=ru.iiec.pydroid3) mobile app for running python code you can test some features.
97-
- In pip section where you're asked to insert `Libary name` paste `android-notify==1.60.8.dev0`
97+
- In pip section where you're asked to insert `Libary name` paste `android-notify==1.60.9.dev0`
9898
- Minimal working example
9999
```py
100-
# Testing with `android-notify==1.60.8.dev0` on pydroid
100+
# Testing with `android-notify==1.60.9.dev0` on pydroid
101101
from kivy.app import App
102102
from kivy.uix.boxlayout import BoxLayout
103103
from kivy.uix.button import Button

android_notify/config.py

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -1,6 +1,6 @@
11
import os
22

3-
__version__ = "1.60.8.dev0"
3+
__version__ = "1.60.9.dev0"
44

55

66
from .internal.java_classes import autoclass, cast, NotificationManager

pyproject.toml

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -4,7 +4,7 @@ build-backend = "setuptools.build_meta"
44

55
[project]
66
name = "android-notify"
7-
version = "1.60.8.dev0"
7+
version = "1.60.9.dev0"
88
description = "A Python package that simplifies creating Android notifications in Kivy and Flet apps."
99
readme = { file = "README.md", content-type = "text/markdown" }
1010
authors = [

0 commit comments

Comments
 (0)