Ejemplo n.º 1
0
 private void update() {
   // whether had update.zip in /mnt/sdcard
   FileUtils mFileUtils = new FileUtils();
   if (mFileUtils.isFileExist(Utilities.mRecoveryFileName)) {
     // enter recovery to update
     if (Utilities.getRecoveryMode() == 1) {
       Utilities.rebootToAutoRecovery(mContext);
     } else {
       Utilities.rebootToRecovery(mContext);
     }
   } else {
     // TODO:can't be here
   }
 }