Run Automation

org.openintents.action.RUN_AUTOMATION

Intent to start execution of an automated task.

Use

public void startRunAutomation() {
    Intent intent = new Intent("org.openintents.action.RUN_AUTOMATION"); 
    if (intent.resolveActivity(getPackageManager()) != null) { 
        startActivity(intent);
    }
}

Example intent filter

<activity ...>
    <intent-filter>
        <action android:name="org.openintents.action.RUN_AUTOMATION" />
        <category android:name="android.intent.category.DEFAULT" />
    </intent-filter>
</activity>
            

Apps Providing an Implementation

Search on Github

Search on Google Play, AppBrain, Amazon App store or similar (not yet available - please make this happen!)

For Specification Writers

Edit on Github