TaskerPluginSample
TaskerPluginSample copied to clipboard
A library to help speed up building a Tasker plugin
Following the [documentation](https://tasker.joaoapps.com/pluginslibrary.html), I'm trying to add an action to [this app](https://gitlab.com/narektor/disconnect), but when triggering the action, it fails with the following stacktace. The emulator is running Android 13 and...
I don't know whether this is a mistake on my side, but I don't know how create a `State` with Jetpack Compose. So I got a audio recording app and...
So as discussed by mail a few times, Google now starting with AGP 8.0 alpha 10 enforce this. And you can no more compile tasker plugins. For the moment it's...
This fixes #13
I've pulled the latest code that allows for customization of the notification channel but there are several places where a default NotificationProperties is used so an extra "taskerpluginforegroundd" notification channel...
See #11 for an example of this in action By sending an Intent such as: ``` Intent(context, IntentServiceAction::class.java).apply { action = IntentServiceAction.ACTION_STOP } ``` Any running actions will be stopped...
This PR is dependant on #8, #9 and #10 . See b7c970c for the isolated changes Adds a sample "CancellableAction" to the demo app. https://user-images.githubusercontent.com/794237/133010750-25d9c5ae-4116-43fa-bd9d-a149d95afcbe.mp4
As of Android 14, [all foreground services need a type](https://developer.android.com/about/versions/14/changes/fgs-types-required). Currently, when targeting 14, you get this exception when running a plugin: ``` E FATAL EXCEPTION: main E Process: com.kieronquinn.app.smartspacer.plugin.tasker,...
I was trying to build a mqtt client with Tasker support (because the existing plugin no longer works on newer versions of Android and join can't handle brokers requiring a...