Is there a specific library for Android session management? I need to manage my sessions in a normal Android app. not in WebView. I can set the session from my
This is what I use for posts. I can use new httpClients with this method where phpsessid is the PHP session id extracted from the login script using the code you have above.
ArrayList nameValuePairs = new ArrayList();
nameValuePairs.add(new BasicNameValuePair("PHPSESSID",phpsessid));