Skip to main content

Posts

simple Voip client for the android

Now I am working to create a simple Voip client for the android based on the pjsip stack. Only require simple features. Make call, Hang up, Speaker phone on/off, Detect Hang up. To be functional over any internet connection.Can you please tell me the feasibility and provide some sample references?

simple Voip client for the android

Now I am working to create a simple Voip client for the android based on the pjsip stack. Only require simple features. Make call, Hang up, Speaker phone on/off, Detect Hang up. To be functional over any internet connection.Can you please tell me the feasibility and provide some sample references?

Json-RPC Method from iOS to Android

I have a java webservice, with some method. The webservice methods are in this form: @Webservice(paramNames = {"email", "password", "stayLogged", "idClient"}, public Response startSession(String email, String password, Boolean stayLogged, String idClient) throws Exception { boolean rC = stayLogged != null && stayLogged.booleanValue(); UserService us = new UserService(); User u = us.getUsersernamePassword(email, password); if (u == null || u.getActive() != null && !u.getActive().booleanValue()) { return ErrorResponse.getAccessDenied(id, logger); } InfoSession is = null; String newKey = null; while (newKey == null) { newKey = UserService.md5(Math.random() + " " + new Date().getTime()); if (SessionManager.get(newKey) != null) { newKey = null; } else { is = new InfoSession(u, rC, newKey); if (idClient != null && id

Json-RPC Method from iOS to Android

I have a java webservice, with some method. The webservice methods are in this form: @Webservice(paramNames = {"email", "password", "stayLogged", "idClient"}, public Response startSession(String email, String password, Boolean stayLogged, String idClient) throws Exception { boolean rC = stayLogged != null && stayLogged.booleanValue(); UserService us = new UserService(); User u = us.getUsersernamePassword(email, password); if (u == null || u.getActive() != null && !u.getActive().booleanValue()) { return ErrorResponse.getAccessDenied(id, logger); } InfoSession is = null; String newKey = null; while (newKey == null) { newKey = UserService.md5(Math.random() + " " + new Date().getTime()); if (SessionManager.get(newKey) != null) { newKey = null; } else { is = new InfoSession(u, rC, newKey); if (idClient != null && id

when i invoke gmail to send some advice the bluetooth come out, too

this is my code to invoke gmail. private void sendMail() { // Device model String PhoneModel = android.os.Build.MODEL; // Android version String AndroidVersion = android.os.Build.VERSION.RELEASE; final Intent emailIntent = new Intent( android.content.Intent.ACTION_SEND); emailIntent.setType("plain/text"); emailIntent.putExtra(android.content.Intent.EXTRA_EMAIL, new String[] { "****@gmail.com"}); emailIntent.putExtra(android.content.Intent.EXTRA_SUBJECT, "'some feedbace..."); emailIntent.putExtra(android.content.Intent.EXTRA_TEXT, "—— phoneModel:" + PhoneModel + ";ROM:" + AndroidVersion); startActivity(Intent.createChooser(emailIntent, "Sending mail...")); } when i click the menu to invoke the gmail to send feedback,the bluetooth come out too,with the gmail,and waiting for me to select one.but i just want to invoke the gmail app.what