Back to project page android-demo-message.
The source code is released under:
/* ==================================================================== * * Copyright (c) 2013 Daniel Pocock All rights reserved. * * Redistribution and use in source and binary forms, with or wi...
If you think the Android project android-demo-message listed in this page is inappropriate, such as containing malicious code/tools or violating the copyright, please email info at java2s dot com, thanks.
package org.resiprocate.android.basicmessage; /*from w w w . ja v a 2 s.com*/ public class SipStack { // SIP stack lifecycle: public native void init(String sipUser, String realm, String user, String password); public native long handleEvents(); public native void setMessageHandler(MessageHandler messageHandler); public native void done(); // SIP stack communication: public native void sendMessage(String recipient, String body); }