Skip to content
This repository was archived by the owner on Nov 14, 2023. It is now read-only.

Latest commit

 

History

History
11 lines (6 loc) · 872 Bytes

File metadata and controls

11 lines (6 loc) · 872 Bytes

BroadcastReceiver_examples

2023-11-13 This repository is archived.

Android only examples of using the Python class android.broadcast.BroadcastReceiver.

There are two examples, WiFi_scanner_example, and Bluetooth_scanner_example.

To find a file containing a list of all the Android system Broadcast actions for a particular installed android.api: on a machine where Buildozer has been run, type find ~/.buildozer -name broadcast_actions.txt

Note: An instance of BroadcastReceiver may only have one call to start(). To start a BroadcastReceiver again, call stop() and create a new instance of BroadcastReceiver then call its start().