I am currently trying to set Android system time in software. Yes, I know that many people tried it - and failed like I do now. :-)
But I also know that it is possib
you can set system Date and time on rooted device like this
public void setDate()
{
try {
Process process = Runtime.getRuntime().exec("su");
DataOutputStream os = new DataOutputStream(process.getOutputStream());
os.writeBytes("date -s 20120419.024012; \n");
} catch (Exception e) {
Log.d(TAG,"error=="+e.toString());
e.printStackTrace();
}
}