Hi, I read that, to be able to reboot programatically, you have to:
1. Sign your app with the "platform certificate" 2. Do this: Intent i = new Intent(Intent.ACTION_REBOOT); i.putExtra("nowait", 1); i.putExtra("interval", 1); i.putExtra("window", 0); sendBroadcast(i); Questions: can any app be signed with such certificate? Can we install it in non-development devices? Can such app be published in the market? In case the answer is NO, i'll like to propose Android developers to let the app issue this and then the system would ask the user "do you want to reboot?". This would make us happy. thanks guich -- You received this message because you are subscribed to the Google Groups "Android Developers" group. To post to this group, send email to android-developers@googlegroups.com To unsubscribe from this group, send email to android-developers+unsubscr...@googlegroups.com For more options, visit this group at http://groups.google.com/group/android-developers?hl=en