React to panic ation

info.guardianproject.panic.action.TRIGGER

App reacts to panic action

Use

public void startReactToPanicAtion() {
    Intent intent = new Intent("info.guardianproject.panic.action.TRIGGER"); 
    if (intent.resolveActivity(getPackageManager()) != null) { 
        startActivity(intent);
    }
}

Example intent filter

<activity ...>
    <intent-filter>
        <action android:name="info.guardianproject.panic.action.TRIGGER" />
        <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