I just discovered that %launch_data is sent to the kid app upon startup. That could provide what I need for the time being. Tasker is amazing!
hoping that the myextra=mystring gets put into %launch_data in a form I can use.
However, the kid app is not being launched. I am not sure, but the Chrome docs say that for this to work, the activity must declare android.intent.category.BROWSABLE in its
category filter. When I look at the manifest in the kid app, I only see the following for this activity:
<intent-filter>
<action android:name="android.intent.action.MAIN" />
<category android:name="android.intent.category.LAUNCHER" />
</intent-filter>
I am interesting in this so I can fire tasks in the kid app from other apps - especially Kustom Live Wall Paper when one of their UI elements are touched. I would guess this could be useful in other places as well.
Thanks.