Remote Intents

com.xconns.peerdevicenet.START_REMOTE_ACTIVITY

PeerDeviceNet exposes a group of intents for sending intents to remote devices:

com.xconns.peerdevicenet.START_REMOTE_ACTIVITY com.xconns.peerdevicenet.START_REMOTE_ACTIVITY_FOR_RESULT com.xconns.peerdevicenet.START_REMOTE_SERVICE com.xconns.peerdevicenet.SEND_REMOTE_BROADCAST

for more details, please refer to http://www.peerdevicenet.net/rmt_intent.html

Use

public void startRemoteIntents( ,  ,  ,  ) {
    Intent intent = new Intent("com.xconns.peerdevicenet.START_REMOTE_ACTIVITY"); 
    intent.putExtra("REMOTE_INTENT", ); // 
    intent.putExtra("PEER_NAME", ); // 
    intent.putExtra("PEER_ADDR", ); // 
    intent.putExtra("PEER_PORT", ); // 
    if (intent.resolveActivity(getPackageManager()) != null) { 
        startActivity(intent);
    }
}

Example intent filter

<activity ...>
    <intent-filter>
        <action android:name="com.xconns.peerdevicenet.START_REMOTE_ACTIVITY" />
        <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