Esempio n. 1
0
 public void retryResult(String sResponseCode, String sResponseDesc) {
   L.event(
       "In retryResult()... sResponseCode ==> "
           + sResponseCode
           + ", sResponseDesc ==> "
           + sResponseDesc);
   Constants.IS_FAILED_UPLOAD_RUNNING = false;
 }
Esempio n. 2
0
 void doUploadFailedResults(
     AppActivity activity,
     ArrayList<String> lstXMLFilePath,
     ArrayList<String> lstLogcatFilesPath) {
   L.event(" Uploading failed files ");
   NotificationUtil.showFailedNotification(activity, " Uploading failed files ", true);
   ResultUploadTask retryTask = new ResultUploadTask(activity, lstXMLFilePath, lstLogcatFilesPath);
   retryTask.execute();
   Constants.IS_FAILED_UPLOAD_RUNNING = true;
 }
Esempio n. 3
0
 public ResultUploadTask(
     AppActivity activity,
     ArrayList<String> lstXMLFilePath,
     ArrayList<String> lstLogcatFilesPath) {
   this.activity = activity;
   arrLstDevInfoXMLFilesPath = lstXMLFilePath;
   arrLstLogcatFilesPath = lstLogcatFilesPath;
   L.event(
       "RetryUploadTask()... \n DevInfoXMLFilesPath ==> "
           + arrLstDevInfoXMLFilesPath
           + "\n LogcatFilesPath ==> "
           + arrLstLogcatFilesPath);
 }