Image 01 and Tasker

One of the options in the Index01 settings is to send Reminders and/or Notes to Tasker. Has anyone been able to accomplish this? If I understand correctly one creates a profile in Tasker for Event->Received Share and that gets the text into the Tasker variable %rs_text. To test this I instructed Tasker to popup %rs_text. But when I talk to the ring I get a message back:

Pebble: Action failed
Failed to create reminder: No Activity found to
handle Intent { act—android.intent.action.SEND
typ=text/plaln fig-ax 10000000 xflg =0x4
pkg=net.dinglisch.android.taskerm clip={text/
plain {T(7)}} (has extras) }

I have no idea what this means or what to do about it.

I had the same problem. I think the reason was that I forgot to do the final step to actually complete and activate the Profile in Tasker. When I did that, it started to work.

Did you actually get your Index01 to pass information to Tasker? When I click on the + to the right of Accounts, and then Tasker under Add Integration I get the message:

Tasker
Sends your notes and reminders
to Tasker as a shared intent
(text/plain), so you can route
them to any app or action.
To receive them, in Tasker:

  1. Add a profile, pick Event →
    Received Share.
  2. Attach a task — your text
    arrives in the %rs_text variable.
  3. Optional: limit it to this app
    with %rs_package_name =
    coredevices.coreapp.

I follow the instructions in Tasker I’ve created a task to popup %rs_text and display it for 10 seconds, but I continue to get the error message

Well, I got past the error. Using Gemini I found out that I needed to make some changes in Tasker.

What This Error Means

Android threw an ActivityNotFoundException.

The Pebble companion app is attempting to send text to Tasker via a standard Android Share UI intent (android.intent.action.SEND targeting net.dinglisch.android.taskerm), but the main Tasker app does not register a standard UI Activity to directly catch generic text shares like a regular note-taking app.

How to Fix It

Option 1: Enable Tasker’s Secondary App (Recommended) Tasker includes an optional helper receiver specifically for catching incoming launch/share intents:

  1. Open Tasker on your phone.

  2. In the Profiles tab, tap + > Event > Tasker > Secondary App Opened.

  3. Link your handling task (e.g., using the %as_text or %evtprm variable that captures the incoming message).

  4. In the Pebble app settings for Index 01, change the target from the base Tasker app to Tasker Secondary (or select it from the app share list).

Option 2: Use AutoShare

  1. Install AutoShare (by the Tasker developer).

  2. Inside the Pebble companion app, route the share destination to AutoShare Command or AutoShare Intercept.

  3. In Tasker, create a profile with Plugin > AutoShare to parse the note text and run your actions.

Option 3: Use a Local Webhook or Broadcast Intent If the Pebble app allows setting custom endpoints or webhooks rather than a direct package share:

  • Point it to a local HTTP Request / webhook listener or Tasker’s built-in command system (tasker:// URL or Broadcast Intent receiver) to avoid using Android UI Activities entirely.

After following instructions for Option 1 I was able to get past the error. HTH someone else